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 | 169k | do { \ |
42 | 169k | constexpr bool _is_new_serialized_type = \ |
43 | 169k | !std::is_same_v<decltype(&FunctionTemplate::get_serialized_type), \ |
44 | 169k | decltype(&IAggregateFunction::get_serialized_type)>; \ |
45 | 169k | if constexpr (_is_new_serialized_type) { \ |
46 | 112k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::serialize_to_column), \ |
47 | 112k | decltype(&IAggregateFunctionHelper< \ |
48 | 112k | FunctionTemplate>::serialize_to_column)>, \ |
49 | 112k | "need to override serialize_to_column"); \ |
50 | 112k | static_assert( \ |
51 | 112k | !std::is_same_v< \ |
52 | 112k | decltype(&FunctionTemplate::streaming_agg_serialize_to_column), \ |
53 | 112k | decltype(&IAggregateFunction::streaming_agg_serialize_to_column)>, \ |
54 | 112k | "need to override " \ |
55 | 112k | "streaming_agg_serialize_to_column"); \ |
56 | 112k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::deserialize_and_merge_vec), \ |
57 | 112k | decltype(&IAggregateFunctionHelper< \ |
58 | 112k | FunctionTemplate>::deserialize_and_merge_vec)>, \ |
59 | 112k | "need to override deserialize_and_merge_vec"); \ |
60 | 112k | static_assert( \ |
61 | 112k | !std::is_same_v< \ |
62 | 112k | decltype(&FunctionTemplate::deserialize_and_merge_vec_selected), \ |
63 | 112k | decltype(&IAggregateFunctionHelper< \ |
64 | 112k | FunctionTemplate>::deserialize_and_merge_vec_selected)>, \ |
65 | 112k | "need to override " \ |
66 | 112k | "deserialize_and_merge_vec_selected"); \ |
67 | 112k | static_assert( \ |
68 | 112k | !std::is_same_v<decltype(&FunctionTemplate::serialize_without_key_to_column), \ |
69 | 112k | decltype(&IAggregateFunctionHelper< \ |
70 | 112k | FunctionTemplate>::serialize_without_key_to_column)>, \ |
71 | 112k | "need to override serialize_without_key_to_column"); \ |
72 | 112k | static_assert( \ |
73 | 112k | !std::is_same_v< \ |
74 | 112k | decltype(&FunctionTemplate::deserialize_and_merge_from_column_range), \ |
75 | 112k | decltype(&IAggregateFunctionHelper< \ |
76 | 112k | FunctionTemplate>::deserialize_and_merge_from_column)>, \ |
77 | 112k | "need to override " \ |
78 | 112k | "deserialize_and_merge_from_column"); \ |
79 | 112k | } \ |
80 | 169k | } while (false) |
81 | | |
82 | | namespace doris { |
83 | | |
84 | | struct creator_without_type { |
85 | | template <bool multi_arguments, bool f, typename T> |
86 | | using NullableT = std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
87 | | AggregateFunctionNullUnaryInline<T, f>>; |
88 | | |
89 | | template <bool multi_arguments, bool f, typename T> |
90 | | using NullableV2T = |
91 | | std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
92 | | AggregateFunctionNullUnaryInlineV2<T, f>>; |
93 | | |
94 | | template <typename AggregateFunctionTemplate> |
95 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
96 | | const DataTypePtr& result_type, |
97 | | const bool result_is_nullable, |
98 | 6.50k | const AggregateFunctionAttr& attr) { |
99 | 6.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
100 | 6.50k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); |
101 | 6.50k | } _ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 2.58k | const AggregateFunctionAttr& attr) { | 99 | 2.58k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 2.58k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 2.58k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 1.10k | const AggregateFunctionAttr& attr) { | 99 | 1.10k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 1.10k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 1.10k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 280 | const AggregateFunctionAttr& attr) { | 99 | 280 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 280 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 280 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 1.38k | const AggregateFunctionAttr& attr) { | 99 | 1.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 1.38k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 1.38k | } |
_ZN5doris20creator_without_type7creatorINS_19WindowFunctionNTileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 10 | const AggregateFunctionAttr& attr) { | 99 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 10 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 10 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionRetentionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 272 | const AggregateFunctionAttr& attr) { | 99 | 272 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 272 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 272 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 404 | const AggregateFunctionAttr& attr) { | 99 | 404 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 404 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 404 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 434 | const AggregateFunctionAttr& attr) { | 99 | 434 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 434 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 434 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 7 | const AggregateFunctionAttr& attr) { | 99 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 7 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 7 | } |
_ZN5doris20creator_without_type7creatorINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 24 | const AggregateFunctionAttr& attr) { | 99 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 24 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 24 | } |
|
102 | | |
103 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
104 | | static AggregateFunctionPtr create(const DataTypes& argument_types_, |
105 | | const bool result_is_nullable, |
106 | 87.8k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. |
108 | 87.8k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { |
109 | 70.1k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
110 | 43.7k | return create_unary_arguments<AggregateFunctionTemplate>( |
111 | 43.7k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
112 | 43.7k | } else { |
113 | 26.3k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( |
114 | 26.3k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
115 | 26.3k | } |
116 | 70.1k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { |
117 | 5.49k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
118 | 4.73k | return create_multi_arguments<AggregateFunctionTemplate>( |
119 | 4.73k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
120 | 4.73k | } else { |
121 | 758 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( |
122 | 758 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
123 | 758 | } |
124 | 12.1k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { |
125 | 12.1k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
126 | 6.70k | return create_varargs<AggregateFunctionTemplate>( |
127 | 6.70k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
128 | 6.70k | } else { |
129 | 5.46k | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( |
130 | 5.46k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
131 | 5.46k | } |
132 | | } else { |
133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, |
134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " |
135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " |
136 | | "NonNullableAggregateFunction)"); |
137 | | } |
138 | 0 | return nullptr; |
139 | 87.8k | } _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 894 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 894 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 894 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 894 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 894 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 894 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 123 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 123 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 123 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 123 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 123 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 123 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 30 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 30 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 30 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 30 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 30 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 30 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.24k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.24k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.24k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.24k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.24k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.24k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 18 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 18 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.23k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.23k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.23k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.23k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.23k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.23k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 9 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 9 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 9 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 158 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 158 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 158 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 158 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 158 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 158 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3.36k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 3.36k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 3.36k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 3.36k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 3.36k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3.36k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 77 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 77 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 77 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 77 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 77 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 77 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 7.90k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 7.90k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 7.90k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 7.90k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 7.90k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 7.90k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6.35k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6.35k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 6.35k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 6.35k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 6.35k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6.35k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.19k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.19k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.19k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.19k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.19k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.19k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 64 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 64 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 64 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 64 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 64 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 64 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.32k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.32k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.32k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.32k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.32k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.32k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 89 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 89 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 89 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 89 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 89 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 89 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 629 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 629 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 629 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 629 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 629 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 629 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 9 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 9 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 9 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 96 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 96 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 96 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 96 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 96 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 96 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 99 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 99 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 99 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 99 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 99 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 99 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 83 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 83 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 83 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 83 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 83 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 83 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 29 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 29 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 29 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 29 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 29 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 29 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.24k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.24k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.24k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.24k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.24k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.24k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 402 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 402 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 402 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 402 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 402 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 402 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 276 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 276 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 276 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 276 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 276 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 533 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 533 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 533 | } else { | 129 | 533 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 533 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 533 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 533 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 58 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 58 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 58 | } else { | 129 | 58 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 58 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 58 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 58 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 1 | } else { | 129 | 1 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 1 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 13 | } else { | 129 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 13 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 602 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 602 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 602 | } else { | 129 | 602 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 602 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 602 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 602 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 16 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 16 | } else { | 129 | 16 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 16 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 29 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 29 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 29 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 29 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 29 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 29 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 286 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 286 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 286 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 286 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 286 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 286 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 285 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 285 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 285 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 285 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 285 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 285 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 284 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 284 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 284 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 284 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 284 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 284 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.58k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.58k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.58k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.58k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.58k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.58k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.10k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.10k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.10k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.10k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.10k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.10k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 280 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 280 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 280 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 280 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 280 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 280 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 281 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 281 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 281 | } else { | 113 | 281 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 281 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 281 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 281 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 18 | } else { | 113 | 18 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 18 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 6 | } else { | 113 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 6 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 6 | } else { | 113 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 6 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 15 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 15 | } else { | 113 | 15 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 15 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 15 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 23 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 23 | } else { | 113 | 23 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 23 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 16 | } else { | 113 | 16 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 16 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 12 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 12 | } else { | 113 | 12 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 12 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.41k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2.41k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2.41k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2.41k | return create_varargs<AggregateFunctionTemplate>( | 127 | 2.41k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.41k | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.57k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1.57k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 1.57k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 1.57k | return create_varargs<AggregateFunctionTemplate>( | 127 | 1.57k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.57k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 1 | return create_varargs<AggregateFunctionTemplate>( | 127 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 579 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 579 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 579 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 579 | return create_varargs<AggregateFunctionTemplate>( | 127 | 579 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 579 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 376 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 376 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 376 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 376 | return create_varargs<AggregateFunctionTemplate>( | 127 | 376 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 376 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 706 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 706 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 706 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 706 | return create_varargs<AggregateFunctionTemplate>( | 127 | 706 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 706 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 25 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 25 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 25 | return create_varargs<AggregateFunctionTemplate>( | 127 | 25 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 25 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 921 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 921 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 921 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 921 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 921 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 921 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 980 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 980 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 980 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 980 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 980 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 980 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.20k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.20k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.20k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.20k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.20k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.47k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.47k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.47k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.47k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.47k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.47k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.38k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.38k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.38k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.38k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.38k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.38k | } |
_ZN5doris20creator_without_type6createINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 10 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 10 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 10 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 716 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 716 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 716 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 716 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 716 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 716 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 763 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 763 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 763 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 763 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 763 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 763 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 739 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 739 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 739 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 739 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 739 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 739 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 426 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 426 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 426 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 426 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 426 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 426 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 300 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 300 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 300 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 300 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 300 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 300 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 41 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 41 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 41 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 41 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 41 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 41 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 4 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 4 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 3 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 259 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 259 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 259 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 259 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 259 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 259 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 257 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 257 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 257 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 257 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 257 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 257 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 102 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 102 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 102 | } else { | 113 | 102 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 102 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 102 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 102 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 303 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 303 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 303 | } else { | 113 | 303 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 303 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 303 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 303 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 320 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 320 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 320 | } else { | 113 | 320 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 320 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 320 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 320 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9.95k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 9.95k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 9.95k | } else { | 113 | 9.95k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 9.95k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 9.95k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9.95k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.99k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.99k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2.99k | } else { | 113 | 2.99k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2.99k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2.99k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.99k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 244 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 244 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 244 | } else { | 113 | 244 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 244 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 244 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 244 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 120 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 120 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 120 | } else { | 113 | 120 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 120 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 120 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 120 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 154 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 154 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 154 | } else { | 113 | 154 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 154 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 154 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 154 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 82 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 82 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 82 | } else { | 113 | 82 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 82 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 82 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 82 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 52 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 52 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 52 | } else { | 113 | 52 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 52 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 52 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 52 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.72k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.72k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 1.72k | } else { | 113 | 1.72k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 1.72k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 1.72k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.72k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 510 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 510 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 510 | } else { | 113 | 510 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 510 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 510 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 510 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 26 | } else { | 113 | 26 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 26 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 5.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 5.20k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 5.20k | } else { | 113 | 5.20k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 5.20k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 5.20k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 5.20k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3.45k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 3.45k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 3.45k | } else { | 113 | 3.45k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 3.45k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 3.45k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3.45k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 700 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 700 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 700 | } else { | 113 | 700 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 700 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 700 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 700 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 8 | } else { | 113 | 8 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 8 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 8 | } else { | 113 | 8 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 8 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 573 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 573 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 573 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 573 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 573 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 573 | } |
_ZN5doris20creator_without_type6createINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 37 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 37 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 37 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 37 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 37 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 37 | } |
_ZN5doris20creator_without_type6createINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 23 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 23 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 23 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 22 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 22 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.31k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1.31k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1.31k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1.31k | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1.31k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.31k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 246 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 246 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 246 | } else { | 121 | 246 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 246 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 246 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 246 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 8 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 8 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 14 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 14 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 14 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 14 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 14 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 28 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 28 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 42 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 42 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 42 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 42 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 42 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 42 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 11 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 11 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 4 | } else { | 121 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 4 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 6 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 6 | } else { | 121 | 6 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 6 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 45 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 45 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 45 | } else { | 121 | 45 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 45 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 45 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 45 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 13 | } else { | 121 | 13 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 13 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 4 | } else { | 121 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 4 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 13 | } else { | 121 | 13 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 13 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 6 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 6 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 6 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 454 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 454 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 454 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 454 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 454 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 454 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 272 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 272 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 272 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 272 | return create_varargs<AggregateFunctionTemplate>( | 127 | 272 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 272 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 3 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 3 | return create_varargs<AggregateFunctionTemplate>( | 127 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 11 | return create_varargs<AggregateFunctionTemplate>( | 127 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 10 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 10 | return create_varargs<AggregateFunctionTemplate>( | 127 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 258 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 258 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 258 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 258 | return create_varargs<AggregateFunctionTemplate>( | 127 | 258 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 258 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 11 | } else { | 129 | 11 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 11 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 14 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 14 | } else { | 129 | 14 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 14 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 14 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 14 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 13 | } else { | 129 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 13 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 272 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 272 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 272 | } else { | 129 | 272 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 272 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 272 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 272 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 865 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 865 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 865 | } else { | 129 | 865 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 865 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 865 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 865 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 15 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 15 | } else { | 129 | 15 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 15 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 15 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 6 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 6 | } else { | 129 | 6 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 6 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 23 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 23 | } else { | 129 | 23 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 23 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 17 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 17 | } else { | 129 | 17 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 17 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 17 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 17 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 23 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 23 | } else { | 129 | 23 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 23 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 180 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 180 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 180 | } else { | 129 | 180 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 180 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 180 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 180 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 59 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 59 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 59 | } else { | 129 | 59 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 59 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 59 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 59 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 609 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 609 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 609 | } else { | 129 | 609 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 609 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 609 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 609 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 567 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 567 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 567 | } else { | 129 | 567 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 567 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 567 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 567 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 33 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 33 | } else { | 129 | 33 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 33 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 32 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 32 | } else { | 129 | 32 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 32 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 32 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 32 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 75 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 75 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 75 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 75 | return create_varargs<AggregateFunctionTemplate>( | 127 | 75 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 75 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 276 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 276 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 276 | return create_varargs<AggregateFunctionTemplate>( | 127 | 276 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 276 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 71 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 71 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 71 | } else { | 129 | 71 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 71 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 71 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 71 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 276 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 276 | } else { | 129 | 276 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 276 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 276 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 276 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 404 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 404 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 404 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 404 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 404 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 404 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 5 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 5 | } else { | 129 | 5 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 5 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 5 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 5 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 43 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 43 | } else { | 129 | 43 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 43 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 43 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 43 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 281 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 281 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 281 | } else { | 129 | 281 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 281 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 281 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 281 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 21 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 21 | } else { | 129 | 21 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 21 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 39 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 39 | } else { | 129 | 39 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 39 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 39 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 39 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 38 | } else { | 129 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 38 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 38 | } else { | 129 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 38 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 3 | } else { | 121 | 3 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 3 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 277 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 277 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 277 | } else { | 121 | 277 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 277 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 277 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 277 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 434 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 434 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 434 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 434 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 434 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 434 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE23ENS_30AggregateFunctionHllSketchDataILS3_23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE10ENS_30AggregateFunctionHllSketchDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 17 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 17 | } else { | 129 | 17 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 17 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 17 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 17 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE13ENS_30AggregateFunctionHllSketchDataILS3_13EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE41ENS_30AggregateFunctionHllSketchDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 1 | } else { | 129 | 1 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 1 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 291 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 291 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 291 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 291 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 291 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 291 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 26 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 26 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 278 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 278 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 278 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 278 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 278 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 278 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 275 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 275 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 275 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 275 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 275 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 275 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 13 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 13 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 18 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 18 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 18 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 7 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 7 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 110 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 110 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 110 | return create_varargs<AggregateFunctionTemplate>( | 127 | 110 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 110 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 50 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 50 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 50 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 50 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 50 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 50 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 46 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 46 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 46 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 46 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 46 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 46 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 42 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 42 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 42 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 42 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 42 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 42 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 22 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 22 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 48 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 48 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 48 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 48 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 48 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 48 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 40 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 40 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 40 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 40 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 40 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 40 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 125 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 125 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 125 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 125 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 125 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 125 | } |
|
140 | | |
141 | | // dispatch |
142 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
143 | | static AggregateFunctionPtr create_varargs(const DataTypes& argument_types_, |
144 | | const bool result_is_nullable, |
145 | 6.69k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
146 | 6.69k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
147 | 6.69k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
148 | 6.69k | if (have_nullable(argument_types_)) { |
149 | 5.63k | std::visit( |
150 | 5.63k | [&](auto multi_arguments, auto result_is_nullable) { |
151 | 5.63k | if (attr.enable_aggregate_function_null_v2) { |
152 | 1.88k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, |
153 | 1.88k | AggregateFunctionTemplate>( |
154 | 1.88k | result.release(), argument_types_, attr.is_window_function)); |
155 | 3.74k | } else { |
156 | 3.74k | result.reset(new NullableT<multi_arguments, result_is_nullable, |
157 | 3.74k | AggregateFunctionTemplate>( |
158 | 3.74k | result.release(), argument_types_, attr.is_window_function)); |
159 | 3.74k | } |
160 | 5.63k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Line | Count | Source | 150 | 1.63k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.63k | if (attr.enable_aggregate_function_null_v2) { | 152 | 47 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 47 | AggregateFunctionTemplate>( | 154 | 47 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.59k | } else { | 156 | 1.59k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.59k | AggregateFunctionTemplate>( | 158 | 1.59k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.59k | } | 160 | 1.63k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 1.53k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.53k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.53k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.53k | AggregateFunctionTemplate>( | 154 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.53k | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 1.53k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 1 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1 | if (attr.enable_aggregate_function_null_v2) { | 152 | 1 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1 | AggregateFunctionTemplate>( | 154 | 1 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Line | Count | Source | 150 | 257 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 257 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 244 | } else { | 156 | 244 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 244 | AggregateFunctionTemplate>( | 158 | 244 | result.release(), argument_types_, attr.is_window_function)); | 159 | 244 | } | 160 | 257 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 274 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 274 | if (attr.enable_aggregate_function_null_v2) { | 152 | 28 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 28 | AggregateFunctionTemplate>( | 154 | 28 | result.release(), argument_types_, attr.is_window_function)); | 155 | 246 | } else { | 156 | 246 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 246 | AggregateFunctionTemplate>( | 158 | 246 | result.release(), argument_types_, attr.is_window_function)); | 159 | 246 | } | 160 | 274 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Line | Count | Source | 150 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 4 | if (attr.enable_aggregate_function_null_v2) { | 152 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 4 | AggregateFunctionTemplate>( | 154 | 4 | result.release(), argument_types_, attr.is_window_function)); | 155 | 4 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 4 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 366 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 366 | if (attr.enable_aggregate_function_null_v2) { | 152 | 5 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 5 | AggregateFunctionTemplate>( | 154 | 5 | result.release(), argument_types_, attr.is_window_function)); | 155 | 361 | } else { | 156 | 361 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 361 | AggregateFunctionTemplate>( | 158 | 361 | result.release(), argument_types_, attr.is_window_function)); | 159 | 361 | } | 160 | 366 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Line | Count | Source | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 3 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Line | Count | Source | 150 | 627 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 627 | if (attr.enable_aggregate_function_null_v2) { | 152 | 59 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 59 | AggregateFunctionTemplate>( | 154 | 59 | result.release(), argument_types_, attr.is_window_function)); | 155 | 568 | } else { | 156 | 568 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 568 | AggregateFunctionTemplate>( | 158 | 568 | result.release(), argument_types_, attr.is_window_function)); | 159 | 568 | } | 160 | 627 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Line | Count | Source | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 13 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_ Line | Count | Source | 150 | 260 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 260 | if (attr.enable_aggregate_function_null_v2) { | 152 | 14 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 14 | AggregateFunctionTemplate>( | 154 | 14 | result.release(), argument_types_, attr.is_window_function)); | 155 | 246 | } else { | 156 | 246 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 246 | AggregateFunctionTemplate>( | 158 | 246 | result.release(), argument_types_, attr.is_window_function)); | 159 | 246 | } | 160 | 260 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 3 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 11 | if (attr.enable_aggregate_function_null_v2) { | 152 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 11 | AggregateFunctionTemplate>( | 154 | 11 | result.release(), argument_types_, attr.is_window_function)); | 155 | 11 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 10 | if (attr.enable_aggregate_function_null_v2) { | 152 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 10 | AggregateFunctionTemplate>( | 154 | 10 | result.release(), argument_types_, attr.is_window_function)); | 155 | 10 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 10 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 253 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 253 | if (attr.enable_aggregate_function_null_v2) { | 152 | 7 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 7 | AggregateFunctionTemplate>( | 154 | 7 | result.release(), argument_types_, attr.is_window_function)); | 155 | 246 | } else { | 156 | 246 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 246 | AggregateFunctionTemplate>( | 158 | 246 | result.release(), argument_types_, attr.is_window_function)); | 159 | 246 | } | 160 | 253 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 50 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 50 | if (attr.enable_aggregate_function_null_v2) { | 152 | 50 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 50 | AggregateFunctionTemplate>( | 154 | 50 | result.release(), argument_types_, attr.is_window_function)); | 155 | 50 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 50 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 261 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 261 | if (attr.enable_aggregate_function_null_v2) { | 152 | 16 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 16 | AggregateFunctionTemplate>( | 154 | 16 | result.release(), argument_types_, attr.is_window_function)); | 155 | 245 | } else { | 156 | 245 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 245 | AggregateFunctionTemplate>( | 158 | 245 | result.release(), argument_types_, attr.is_window_function)); | 159 | 245 | } | 160 | 261 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_ Line | Count | Source | 150 | 55 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 55 | if (attr.enable_aggregate_function_null_v2) { | 152 | 55 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 55 | AggregateFunctionTemplate>( | 154 | 55 | result.release(), argument_types_, attr.is_window_function)); | 155 | 55 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 55 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_ Line | Count | Source | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 13 | }, |
|
161 | 5.63k | make_bool_variant(argument_types_.size() > 1), |
162 | 5.63k | make_bool_variant(result_is_nullable)); |
163 | 5.63k | } |
164 | | |
165 | 6.69k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
166 | 6.69k | return AggregateFunctionPtr(result.release()); |
167 | 6.69k | } Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2.41k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2.41k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2.41k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2.41k | if (have_nullable(argument_types_)) { | 149 | 1.63k | std::visit( | 150 | 1.63k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.63k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.63k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.63k | AggregateFunctionTemplate>( | 154 | 1.63k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.63k | } else { | 156 | 1.63k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.63k | AggregateFunctionTemplate>( | 158 | 1.63k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.63k | } | 160 | 1.63k | }, | 161 | 1.63k | make_bool_variant(argument_types_.size() > 1), | 162 | 1.63k | make_bool_variant(result_is_nullable)); | 163 | 1.63k | } | 164 | | | 165 | 2.41k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2.41k | return AggregateFunctionPtr(result.release()); | 167 | 2.41k | } |
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 1.57k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 1.57k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 1.57k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 1.57k | if (have_nullable(argument_types_)) { | 149 | 1.53k | std::visit( | 150 | 1.53k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.53k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.53k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.53k | AggregateFunctionTemplate>( | 154 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.53k | } else { | 156 | 1.53k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.53k | AggregateFunctionTemplate>( | 158 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.53k | } | 160 | 1.53k | }, | 161 | 1.53k | make_bool_variant(argument_types_.size() > 1), | 162 | 1.53k | make_bool_variant(result_is_nullable)); | 163 | 1.53k | } | 164 | | | 165 | 1.57k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 1.57k | return AggregateFunctionPtr(result.release()); | 167 | 1.57k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 1 | if (have_nullable(argument_types_)) { | 149 | 1 | std::visit( | 150 | 1 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1 | if (attr.enable_aggregate_function_null_v2) { | 152 | 1 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1 | AggregateFunctionTemplate>( | 154 | 1 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1 | } else { | 156 | 1 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1 | AggregateFunctionTemplate>( | 158 | 1 | result.release(), argument_types_, attr.is_window_function)); | 159 | 1 | } | 160 | 1 | }, | 161 | 1 | make_bool_variant(argument_types_.size() > 1), | 162 | 1 | make_bool_variant(result_is_nullable)); | 163 | 1 | } | 164 | | | 165 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 1 | return AggregateFunctionPtr(result.release()); | 167 | 1 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 577 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 577 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 577 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 577 | if (have_nullable(argument_types_)) { | 149 | 530 | std::visit( | 150 | 530 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 530 | if (attr.enable_aggregate_function_null_v2) { | 152 | 530 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 530 | AggregateFunctionTemplate>( | 154 | 530 | result.release(), argument_types_, attr.is_window_function)); | 155 | 530 | } else { | 156 | 530 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 530 | AggregateFunctionTemplate>( | 158 | 530 | result.release(), argument_types_, attr.is_window_function)); | 159 | 530 | } | 160 | 530 | }, | 161 | 530 | make_bool_variant(argument_types_.size() > 1), | 162 | 530 | make_bool_variant(result_is_nullable)); | 163 | 530 | } | 164 | | | 165 | 577 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 577 | return AggregateFunctionPtr(result.release()); | 167 | 577 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 376 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 376 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 376 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 376 | if (have_nullable(argument_types_)) { | 149 | 370 | std::visit( | 150 | 370 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 370 | if (attr.enable_aggregate_function_null_v2) { | 152 | 370 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 370 | AggregateFunctionTemplate>( | 154 | 370 | result.release(), argument_types_, attr.is_window_function)); | 155 | 370 | } else { | 156 | 370 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 370 | AggregateFunctionTemplate>( | 158 | 370 | result.release(), argument_types_, attr.is_window_function)); | 159 | 370 | } | 160 | 370 | }, | 161 | 370 | make_bool_variant(argument_types_.size() > 1), | 162 | 370 | make_bool_variant(result_is_nullable)); | 163 | 370 | } | 164 | | | 165 | 376 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 376 | return AggregateFunctionPtr(result.release()); | 167 | 376 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 706 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 706 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 706 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 706 | if (have_nullable(argument_types_)) { | 149 | 631 | std::visit( | 150 | 631 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 631 | if (attr.enable_aggregate_function_null_v2) { | 152 | 631 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 631 | AggregateFunctionTemplate>( | 154 | 631 | result.release(), argument_types_, attr.is_window_function)); | 155 | 631 | } else { | 156 | 631 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 631 | AggregateFunctionTemplate>( | 158 | 631 | result.release(), argument_types_, attr.is_window_function)); | 159 | 631 | } | 160 | 631 | }, | 161 | 631 | make_bool_variant(argument_types_.size() > 1), | 162 | 631 | make_bool_variant(result_is_nullable)); | 163 | 631 | } | 164 | | | 165 | 706 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 706 | return AggregateFunctionPtr(result.release()); | 167 | 706 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 25 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 25 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 25 | if (have_nullable(argument_types_)) { | 149 | 13 | std::visit( | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 13 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 13 | AggregateFunctionTemplate>( | 158 | 13 | result.release(), argument_types_, attr.is_window_function)); | 159 | 13 | } | 160 | 13 | }, | 161 | 13 | make_bool_variant(argument_types_.size() > 1), | 162 | 13 | make_bool_variant(result_is_nullable)); | 163 | 13 | } | 164 | | | 165 | 25 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 25 | return AggregateFunctionPtr(result.release()); | 167 | 25 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 272 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 272 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 272 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 272 | if (have_nullable(argument_types_)) { | 149 | 262 | std::visit( | 150 | 262 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 262 | if (attr.enable_aggregate_function_null_v2) { | 152 | 262 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 262 | AggregateFunctionTemplate>( | 154 | 262 | result.release(), argument_types_, attr.is_window_function)); | 155 | 262 | } else { | 156 | 262 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 262 | AggregateFunctionTemplate>( | 158 | 262 | result.release(), argument_types_, attr.is_window_function)); | 159 | 262 | } | 160 | 262 | }, | 161 | 262 | make_bool_variant(argument_types_.size() > 1), | 162 | 262 | make_bool_variant(result_is_nullable)); | 163 | 262 | } | 164 | | | 165 | 272 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 272 | return AggregateFunctionPtr(result.release()); | 167 | 272 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 3 | if (have_nullable(argument_types_)) { | 149 | 3 | std::visit( | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 3 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 3 | AggregateFunctionTemplate>( | 158 | 3 | result.release(), argument_types_, attr.is_window_function)); | 159 | 3 | } | 160 | 3 | }, | 161 | 3 | make_bool_variant(argument_types_.size() > 1), | 162 | 3 | make_bool_variant(result_is_nullable)); | 163 | 3 | } | 164 | | | 165 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 3 | return AggregateFunctionPtr(result.release()); | 167 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 11 | if (have_nullable(argument_types_)) { | 149 | 11 | std::visit( | 150 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 11 | if (attr.enable_aggregate_function_null_v2) { | 152 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 11 | AggregateFunctionTemplate>( | 154 | 11 | result.release(), argument_types_, attr.is_window_function)); | 155 | 11 | } else { | 156 | 11 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 11 | AggregateFunctionTemplate>( | 158 | 11 | result.release(), argument_types_, attr.is_window_function)); | 159 | 11 | } | 160 | 11 | }, | 161 | 11 | make_bool_variant(argument_types_.size() > 1), | 162 | 11 | make_bool_variant(result_is_nullable)); | 163 | 11 | } | 164 | | | 165 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 11 | return AggregateFunctionPtr(result.release()); | 167 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 2 | std::visit( | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 2 | AggregateFunctionTemplate>( | 158 | 2 | result.release(), argument_types_, attr.is_window_function)); | 159 | 2 | } | 160 | 2 | }, | 161 | 2 | make_bool_variant(argument_types_.size() > 1), | 162 | 2 | make_bool_variant(result_is_nullable)); | 163 | 2 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 2 | std::visit( | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 2 | AggregateFunctionTemplate>( | 158 | 2 | result.release(), argument_types_, attr.is_window_function)); | 159 | 2 | } | 160 | 2 | }, | 161 | 2 | make_bool_variant(argument_types_.size() > 1), | 162 | 2 | make_bool_variant(result_is_nullable)); | 163 | 2 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 10 | if (have_nullable(argument_types_)) { | 149 | 10 | std::visit( | 150 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 10 | if (attr.enable_aggregate_function_null_v2) { | 152 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 10 | AggregateFunctionTemplate>( | 154 | 10 | result.release(), argument_types_, attr.is_window_function)); | 155 | 10 | } else { | 156 | 10 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 10 | AggregateFunctionTemplate>( | 158 | 10 | result.release(), argument_types_, attr.is_window_function)); | 159 | 10 | } | 160 | 10 | }, | 161 | 10 | make_bool_variant(argument_types_.size() > 1), | 162 | 10 | make_bool_variant(result_is_nullable)); | 163 | 10 | } | 164 | | | 165 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 10 | return AggregateFunctionPtr(result.release()); | 167 | 10 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 257 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 257 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 257 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 257 | if (have_nullable(argument_types_)) { | 149 | 252 | std::visit( | 150 | 252 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 252 | if (attr.enable_aggregate_function_null_v2) { | 152 | 252 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 252 | AggregateFunctionTemplate>( | 154 | 252 | result.release(), argument_types_, attr.is_window_function)); | 155 | 252 | } else { | 156 | 252 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 252 | AggregateFunctionTemplate>( | 158 | 252 | result.release(), argument_types_, attr.is_window_function)); | 159 | 252 | } | 160 | 252 | }, | 161 | 252 | make_bool_variant(argument_types_.size() > 1), | 162 | 252 | make_bool_variant(result_is_nullable)); | 163 | 252 | } | 164 | | | 165 | 257 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 257 | return AggregateFunctionPtr(result.release()); | 167 | 257 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 75 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 75 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 75 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 75 | if (have_nullable(argument_types_)) { | 149 | 50 | std::visit( | 150 | 50 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 50 | if (attr.enable_aggregate_function_null_v2) { | 152 | 50 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 50 | AggregateFunctionTemplate>( | 154 | 50 | result.release(), argument_types_, attr.is_window_function)); | 155 | 50 | } else { | 156 | 50 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 50 | AggregateFunctionTemplate>( | 158 | 50 | result.release(), argument_types_, attr.is_window_function)); | 159 | 50 | } | 160 | 50 | }, | 161 | 50 | make_bool_variant(argument_types_.size() > 1), | 162 | 50 | make_bool_variant(result_is_nullable)); | 163 | 50 | } | 164 | | | 165 | 75 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 75 | return AggregateFunctionPtr(result.release()); | 167 | 75 | } |
_ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 276 | if (have_nullable(argument_types_)) { | 149 | 261 | std::visit( | 150 | 261 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 261 | if (attr.enable_aggregate_function_null_v2) { | 152 | 261 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 261 | AggregateFunctionTemplate>( | 154 | 261 | result.release(), argument_types_, attr.is_window_function)); | 155 | 261 | } else { | 156 | 261 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 261 | AggregateFunctionTemplate>( | 158 | 261 | result.release(), argument_types_, attr.is_window_function)); | 159 | 261 | } | 160 | 261 | }, | 161 | 261 | make_bool_variant(argument_types_.size() > 1), | 162 | 261 | make_bool_variant(result_is_nullable)); | 163 | 261 | } | 164 | | | 165 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 276 | return AggregateFunctionPtr(result.release()); | 167 | 276 | } |
_ZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 0 | std::visit( | 150 | 0 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 0 | if (attr.enable_aggregate_function_null_v2) { | 152 | 0 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 0 | AggregateFunctionTemplate>( | 154 | 0 | result.release(), argument_types_, attr.is_window_function)); | 155 | 0 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 0 | }, | 161 | 0 | make_bool_variant(argument_types_.size() > 1), | 162 | 0 | make_bool_variant(result_is_nullable)); | 163 | 0 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 110 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 110 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 110 | if (have_nullable(argument_types_)) { | 149 | 68 | std::visit( | 150 | 68 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 68 | if (attr.enable_aggregate_function_null_v2) { | 152 | 68 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 68 | AggregateFunctionTemplate>( | 154 | 68 | result.release(), argument_types_, attr.is_window_function)); | 155 | 68 | } else { | 156 | 68 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 68 | AggregateFunctionTemplate>( | 158 | 68 | result.release(), argument_types_, attr.is_window_function)); | 159 | 68 | } | 160 | 68 | }, | 161 | 68 | make_bool_variant(argument_types_.size() > 1), | 162 | 68 | make_bool_variant(result_is_nullable)); | 163 | 68 | } | 164 | | | 165 | 110 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 110 | return AggregateFunctionPtr(result.release()); | 167 | 110 | } |
|
168 | | |
169 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
170 | | static AggregateFunctionPtr create_varargs_return_not_nullable( |
171 | | const DataTypes& argument_types_, const bool result_is_nullable, |
172 | 5.46k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
173 | 5.46k | if (!attr.is_foreach && result_is_nullable) { |
174 | 0 | throw doris::Exception(Status::InternalError( |
175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); |
176 | 0 | } |
177 | 5.46k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
178 | 5.46k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
179 | 5.46k | if (have_nullable(argument_types_)) { |
180 | 2.93k | if (argument_types_.size() > 1) { |
181 | 737 | if (attr.enable_aggregate_function_null_v2) { |
182 | 491 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
183 | 491 | result.release(), argument_types_, attr.is_window_function)); |
184 | 491 | } else { |
185 | 246 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
186 | 246 | result.release(), argument_types_, attr.is_window_function)); |
187 | 246 | } |
188 | 2.20k | } else { |
189 | 2.20k | if (attr.enable_aggregate_function_null_v2) { |
190 | 1.08k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
191 | 1.08k | result.release(), argument_types_, attr.is_window_function)); |
192 | 1.11k | } else { |
193 | 1.11k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
194 | 1.11k | result.release(), argument_types_, attr.is_window_function)); |
195 | 1.11k | } |
196 | 2.20k | } |
197 | 2.93k | } |
198 | | |
199 | 5.46k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
200 | 5.46k | return AggregateFunctionPtr(result.release()); |
201 | 5.46k | } _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 5 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 5 | } else { | 189 | 5 | if (attr.enable_aggregate_function_null_v2) { | 190 | 5 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 5 | result.release(), argument_types_, attr.is_window_function)); | 192 | 5 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 5 | } | 197 | 5 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 532 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 533 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 532 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 532 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 532 | if (have_nullable(argument_types_)) { | 180 | 460 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 460 | } else { | 189 | 460 | if (attr.enable_aggregate_function_null_v2) { | 190 | 214 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 214 | result.release(), argument_types_, attr.is_window_function)); | 192 | 246 | } else { | 193 | 246 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 246 | result.release(), argument_types_, attr.is_window_function)); | 195 | 246 | } | 196 | 460 | } | 197 | 460 | } | 198 | | | 199 | 532 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 532 | return AggregateFunctionPtr(result.release()); | 201 | 532 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 58 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 58 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 58 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 58 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 58 | if (have_nullable(argument_types_)) { | 180 | 25 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 25 | } else { | 189 | 25 | if (attr.enable_aggregate_function_null_v2) { | 190 | 25 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 25 | result.release(), argument_types_, attr.is_window_function)); | 192 | 25 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 25 | } | 197 | 25 | } | 198 | | | 199 | 58 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 58 | return AggregateFunctionPtr(result.release()); | 201 | 58 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 1 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 1 | if (have_nullable(argument_types_)) { | 180 | 1 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 1 | } else { | 189 | 1 | if (attr.enable_aggregate_function_null_v2) { | 190 | 1 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 1 | result.release(), argument_types_, attr.is_window_function)); | 192 | 1 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 1 | } | 197 | 1 | } | 198 | | | 199 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 1 | return AggregateFunctionPtr(result.release()); | 201 | 1 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 13 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 13 | if (have_nullable(argument_types_)) { | 180 | 13 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 13 | } else { | 189 | 13 | if (attr.enable_aggregate_function_null_v2) { | 190 | 13 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 13 | result.release(), argument_types_, attr.is_window_function)); | 192 | 13 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 13 | } | 197 | 13 | } | 198 | | | 199 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 13 | return AggregateFunctionPtr(result.release()); | 201 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 602 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 602 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 602 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 602 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 602 | if (have_nullable(argument_types_)) { | 180 | 274 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 274 | } else { | 189 | 274 | if (attr.enable_aggregate_function_null_v2) { | 190 | 274 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 274 | result.release(), argument_types_, attr.is_window_function)); | 192 | 274 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 274 | } | 197 | 274 | } | 198 | | | 199 | 602 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 602 | return AggregateFunctionPtr(result.release()); | 201 | 602 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 16 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 16 | if (have_nullable(argument_types_)) { | 180 | 16 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 16 | } else { | 189 | 16 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 16 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 16 | } | 197 | 16 | } | 198 | | | 199 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 16 | return AggregateFunctionPtr(result.release()); | 201 | 16 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 11 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 11 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 11 | return AggregateFunctionPtr(result.release()); | 201 | 11 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 14 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 14 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 14 | return AggregateFunctionPtr(result.release()); | 201 | 14 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 13 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 13 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 13 | return AggregateFunctionPtr(result.release()); | 201 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 272 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 272 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 272 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 272 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 272 | if (have_nullable(argument_types_)) { | 180 | 262 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 262 | } else { | 189 | 262 | if (attr.enable_aggregate_function_null_v2) { | 190 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 20 | result.release(), argument_types_, attr.is_window_function)); | 192 | 242 | } else { | 193 | 242 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 242 | result.release(), argument_types_, attr.is_window_function)); | 195 | 242 | } | 196 | 262 | } | 197 | 262 | } | 198 | | | 199 | 272 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 272 | return AggregateFunctionPtr(result.release()); | 201 | 272 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 865 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 865 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 865 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 865 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 865 | if (have_nullable(argument_types_)) { | 180 | 262 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 262 | } else { | 189 | 262 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 246 | } else { | 193 | 246 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 246 | result.release(), argument_types_, attr.is_window_function)); | 195 | 246 | } | 196 | 262 | } | 197 | 262 | } | 198 | | | 199 | 865 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 865 | return AggregateFunctionPtr(result.release()); | 201 | 865 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 15 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 15 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 15 | return AggregateFunctionPtr(result.release()); | 201 | 15 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 6 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 6 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 6 | return AggregateFunctionPtr(result.release()); | 201 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 17 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 17 | } else { | 189 | 17 | if (attr.enable_aggregate_function_null_v2) { | 190 | 17 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 17 | result.release(), argument_types_, attr.is_window_function)); | 192 | 17 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 17 | } | 197 | 17 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 23 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 23 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 18 | if (attr.enable_aggregate_function_null_v2) { | 190 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 18 | result.release(), argument_types_, attr.is_window_function)); | 192 | 18 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 18 | } | 197 | 18 | } | 198 | | | 199 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 23 | return AggregateFunctionPtr(result.release()); | 201 | 23 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 17 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 17 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 17 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 17 | if (have_nullable(argument_types_)) { | 180 | 16 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 16 | } else { | 189 | 16 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 16 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 16 | } | 197 | 16 | } | 198 | | | 199 | 17 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 17 | return AggregateFunctionPtr(result.release()); | 201 | 17 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 23 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 23 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 18 | if (attr.enable_aggregate_function_null_v2) { | 190 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 18 | result.release(), argument_types_, attr.is_window_function)); | 192 | 18 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 18 | } | 197 | 18 | } | 198 | | | 199 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 23 | return AggregateFunctionPtr(result.release()); | 201 | 23 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 180 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 180 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 180 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 180 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 180 | if (have_nullable(argument_types_)) { | 180 | 166 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 166 | } else { | 189 | 166 | if (attr.enable_aggregate_function_null_v2) { | 190 | 28 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 28 | result.release(), argument_types_, attr.is_window_function)); | 192 | 138 | } else { | 193 | 138 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 138 | result.release(), argument_types_, attr.is_window_function)); | 195 | 138 | } | 196 | 166 | } | 197 | 166 | } | 198 | | | 199 | 180 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 180 | return AggregateFunctionPtr(result.release()); | 201 | 180 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 59 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 59 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 59 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 59 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 59 | if (have_nullable(argument_types_)) { | 180 | 33 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 33 | } else { | 189 | 33 | if (attr.enable_aggregate_function_null_v2) { | 190 | 33 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 33 | result.release(), argument_types_, attr.is_window_function)); | 192 | 33 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 33 | } | 197 | 33 | } | 198 | | | 199 | 59 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 59 | return AggregateFunctionPtr(result.release()); | 201 | 59 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 609 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 609 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 609 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 609 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 609 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 10 | if (attr.enable_aggregate_function_null_v2) { | 182 | 10 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 10 | result.release(), argument_types_, attr.is_window_function)); | 184 | 10 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 10 | } | 198 | | | 199 | 609 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 609 | return AggregateFunctionPtr(result.release()); | 201 | 609 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 567 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 567 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 567 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 567 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 567 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 567 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 567 | return AggregateFunctionPtr(result.release()); | 201 | 567 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 33 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 33 | if (have_nullable(argument_types_)) { | 180 | 25 | if (argument_types_.size() > 1) { | 181 | 25 | if (attr.enable_aggregate_function_null_v2) { | 182 | 25 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 25 | result.release(), argument_types_, attr.is_window_function)); | 184 | 25 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 25 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 25 | } | 198 | | | 199 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 33 | return AggregateFunctionPtr(result.release()); | 201 | 33 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 32 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 32 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 32 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 32 | if (have_nullable(argument_types_)) { | 180 | 24 | if (argument_types_.size() > 1) { | 181 | 24 | if (attr.enable_aggregate_function_null_v2) { | 182 | 24 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 24 | result.release(), argument_types_, attr.is_window_function)); | 184 | 24 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 24 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 24 | } | 198 | | | 199 | 32 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 32 | return AggregateFunctionPtr(result.release()); | 201 | 32 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 12 | if (attr.enable_aggregate_function_null_v2) { | 182 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 12 | result.release(), argument_types_, attr.is_window_function)); | 184 | 12 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 12 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 71 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 71 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 71 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 71 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 71 | if (have_nullable(argument_types_)) { | 180 | 45 | if (argument_types_.size() > 1) { | 181 | 45 | if (attr.enable_aggregate_function_null_v2) { | 182 | 45 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 45 | result.release(), argument_types_, attr.is_window_function)); | 184 | 45 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 45 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 45 | } | 198 | | | 199 | 71 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 71 | return AggregateFunctionPtr(result.release()); | 201 | 71 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 276 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 276 | if (have_nullable(argument_types_)) { | 180 | 262 | if (argument_types_.size() > 1) { | 181 | 262 | if (attr.enable_aggregate_function_null_v2) { | 182 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 16 | result.release(), argument_types_, attr.is_window_function)); | 184 | 246 | } else { | 185 | 246 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 246 | result.release(), argument_types_, attr.is_window_function)); | 187 | 246 | } | 188 | 262 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 262 | } | 198 | | | 199 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 276 | return AggregateFunctionPtr(result.release()); | 201 | 276 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 5 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 5 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 4 | if (attr.enable_aggregate_function_null_v2) { | 182 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 4 | result.release(), argument_types_, attr.is_window_function)); | 184 | 4 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 4 | } | 198 | | | 199 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 5 | return AggregateFunctionPtr(result.release()); | 201 | 5 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 7 | if (argument_types_.size() > 1) { | 181 | 7 | if (attr.enable_aggregate_function_null_v2) { | 182 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 7 | result.release(), argument_types_, attr.is_window_function)); | 184 | 7 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 7 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 7 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 7 | if (argument_types_.size() > 1) { | 181 | 7 | if (attr.enable_aggregate_function_null_v2) { | 182 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 7 | result.release(), argument_types_, attr.is_window_function)); | 184 | 7 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 7 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 7 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 43 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 43 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 43 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 43 | if (have_nullable(argument_types_)) { | 180 | 35 | if (argument_types_.size() > 1) { | 181 | 35 | if (attr.enable_aggregate_function_null_v2) { | 182 | 35 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 35 | result.release(), argument_types_, attr.is_window_function)); | 184 | 35 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 35 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 35 | } | 198 | | | 199 | 43 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 43 | return AggregateFunctionPtr(result.release()); | 201 | 43 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 281 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 281 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 281 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 281 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 281 | if (have_nullable(argument_types_)) { | 180 | 266 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 266 | } else { | 189 | 266 | if (attr.enable_aggregate_function_null_v2) { | 190 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 20 | result.release(), argument_types_, attr.is_window_function)); | 192 | 246 | } else { | 193 | 246 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 246 | result.release(), argument_types_, attr.is_window_function)); | 195 | 246 | } | 196 | 266 | } | 197 | 266 | } | 198 | | | 199 | 281 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 281 | return AggregateFunctionPtr(result.release()); | 201 | 281 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 21 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 21 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 21 | return AggregateFunctionPtr(result.release()); | 201 | 21 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 39 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 39 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 39 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 39 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 39 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 39 | return AggregateFunctionPtr(result.release()); | 201 | 39 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 38 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 38 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 38 | return AggregateFunctionPtr(result.release()); | 201 | 38 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 38 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 38 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 38 | return AggregateFunctionPtr(result.release()); | 201 | 38 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE23ENS_30AggregateFunctionHllSketchDataILS3_23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE10ENS_30AggregateFunctionHllSketchDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 17 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 17 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 17 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 17 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 1 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 1 | result.release(), argument_types_, attr.is_window_function)); | 195 | 1 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 17 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 17 | return AggregateFunctionPtr(result.release()); | 201 | 17 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE13ENS_30AggregateFunctionHllSketchDataILS3_13EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_40AggregateFunctionDataSketchesHllUnionAggILNS_13PrimitiveTypeE41ENS_30AggregateFunctionHllSketchDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 1 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 1 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 1 | return AggregateFunctionPtr(result.release()); | 201 | 1 | } |
|
202 | | |
203 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
204 | | static AggregateFunctionPtr create_multi_arguments(const DataTypes& argument_types_, |
205 | | const bool result_is_nullable, |
206 | | const AggregateFunctionAttr& attr, |
207 | 8.21k | TArgs&&... args) { |
208 | 8.21k | if (!(argument_types_.size() > 1)) { |
209 | 0 | throw doris::Exception(Status::InternalError( |
210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); |
211 | 0 | } |
212 | 8.21k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
213 | 8.21k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
214 | 8.21k | if (have_nullable(argument_types_)) { |
215 | 7.90k | std::visit( |
216 | 7.90k | [&](auto result_is_nullable) { |
217 | 7.90k | if (attr.enable_aggregate_function_null_v2) { |
218 | 908 | result.reset(new NullableV2T<true, result_is_nullable, |
219 | 908 | AggregateFunctionTemplate>( |
220 | 908 | result.release(), argument_types_, attr.is_window_function)); |
221 | 7.00k | } else { |
222 | 7.00k | result.reset(new NullableT<true, result_is_nullable, |
223 | 7.00k | AggregateFunctionTemplate>( |
224 | 7.00k | result.release(), argument_types_, attr.is_window_function)); |
225 | 7.00k | } |
226 | 7.90k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 316 | [&](auto result_is_nullable) { | 217 | 316 | if (attr.enable_aggregate_function_null_v2) { | 218 | 71 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 71 | AggregateFunctionTemplate>( | 220 | 71 | result.release(), argument_types_, attr.is_window_function)); | 221 | 245 | } else { | 222 | 245 | result.reset(new NullableT<true, result_is_nullable, | 223 | 245 | AggregateFunctionTemplate>( | 224 | 245 | result.release(), argument_types_, attr.is_window_function)); | 225 | 245 | } | 226 | 316 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 15 | [&](auto result_is_nullable) { | 217 | 15 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 12 | } else { | 222 | 12 | result.reset(new NullableT<true, result_is_nullable, | 223 | 12 | AggregateFunctionTemplate>( | 224 | 12 | result.release(), argument_types_, attr.is_window_function)); | 225 | 12 | } | 226 | 15 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 1.87k | [&](auto result_is_nullable) { | 217 | 1.87k | if (attr.enable_aggregate_function_null_v2) { | 218 | 73 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 73 | AggregateFunctionTemplate>( | 220 | 73 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.80k | } else { | 222 | 1.80k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.80k | AggregateFunctionTemplate>( | 224 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.80k | } | 226 | 1.87k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 572 | [&](auto result_is_nullable) { | 217 | 572 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 569 | } else { | 222 | 569 | result.reset(new NullableT<true, result_is_nullable, | 223 | 569 | AggregateFunctionTemplate>( | 224 | 569 | result.release(), argument_types_, attr.is_window_function)); | 225 | 569 | } | 226 | 572 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 303 | [&](auto result_is_nullable) { | 217 | 303 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 301 | } else { | 222 | 301 | result.reset(new NullableT<true, result_is_nullable, | 223 | 301 | AggregateFunctionTemplate>( | 224 | 301 | result.release(), argument_types_, attr.is_window_function)); | 225 | 301 | } | 226 | 303 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 292 | [&](auto result_is_nullable) { | 217 | 292 | if (attr.enable_aggregate_function_null_v2) { | 218 | 10 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 10 | AggregateFunctionTemplate>( | 220 | 10 | result.release(), argument_types_, attr.is_window_function)); | 221 | 282 | } else { | 222 | 282 | result.reset(new NullableT<true, result_is_nullable, | 223 | 282 | AggregateFunctionTemplate>( | 224 | 282 | result.release(), argument_types_, attr.is_window_function)); | 225 | 282 | } | 226 | 292 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 276 | [&](auto result_is_nullable) { | 217 | 276 | if (attr.enable_aggregate_function_null_v2) { | 218 | 30 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 30 | AggregateFunctionTemplate>( | 220 | 30 | result.release(), argument_types_, attr.is_window_function)); | 221 | 246 | } else { | 222 | 246 | result.reset(new NullableT<true, result_is_nullable, | 223 | 246 | AggregateFunctionTemplate>( | 224 | 246 | result.release(), argument_types_, attr.is_window_function)); | 225 | 246 | } | 226 | 276 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 25 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 3 | [&](auto result_is_nullable) { | 217 | 3 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 3 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 3 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 253 | [&](auto result_is_nullable) { | 217 | 253 | if (attr.enable_aggregate_function_null_v2) { | 218 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 7 | AggregateFunctionTemplate>( | 220 | 7 | result.release(), argument_types_, attr.is_window_function)); | 221 | 246 | } else { | 222 | 246 | result.reset(new NullableT<true, result_is_nullable, | 223 | 246 | AggregateFunctionTemplate>( | 224 | 246 | result.release(), argument_types_, attr.is_window_function)); | 225 | 246 | } | 226 | 253 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 244 | [&](auto result_is_nullable) { | 217 | 244 | if (attr.enable_aggregate_function_null_v2) { | 218 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 7 | AggregateFunctionTemplate>( | 220 | 7 | result.release(), argument_types_, attr.is_window_function)); | 221 | 237 | } else { | 222 | 237 | result.reset(new NullableT<true, result_is_nullable, | 223 | 237 | AggregateFunctionTemplate>( | 224 | 237 | result.release(), argument_types_, attr.is_window_function)); | 225 | 237 | } | 226 | 244 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 556 | [&](auto result_is_nullable) { | 217 | 556 | if (attr.enable_aggregate_function_null_v2) { | 218 | 41 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 41 | AggregateFunctionTemplate>( | 220 | 41 | result.release(), argument_types_, attr.is_window_function)); | 221 | 515 | } else { | 222 | 515 | result.reset(new NullableT<true, result_is_nullable, | 223 | 515 | AggregateFunctionTemplate>( | 224 | 515 | result.release(), argument_types_, attr.is_window_function)); | 225 | 515 | } | 226 | 556 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 29 | [&](auto result_is_nullable) { | 217 | 29 | if (attr.enable_aggregate_function_null_v2) { | 218 | 29 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 29 | AggregateFunctionTemplate>( | 220 | 29 | result.release(), argument_types_, attr.is_window_function)); | 221 | 29 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 29 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 17 | [&](auto result_is_nullable) { | 217 | 17 | if (attr.enable_aggregate_function_null_v2) { | 218 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 17 | AggregateFunctionTemplate>( | 220 | 17 | result.release(), argument_types_, attr.is_window_function)); | 221 | 17 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 17 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 20 | [&](auto result_is_nullable) { | 217 | 20 | if (attr.enable_aggregate_function_null_v2) { | 218 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 20 | AggregateFunctionTemplate>( | 220 | 20 | result.release(), argument_types_, attr.is_window_function)); | 221 | 20 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 1.31k | [&](auto result_is_nullable) { | 217 | 1.31k | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.31k | } else { | 222 | 1.31k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.31k | AggregateFunctionTemplate>( | 224 | 1.31k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.31k | } | 226 | 1.31k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 14 | [&](auto result_is_nullable) { | 217 | 14 | if (attr.enable_aggregate_function_null_v2) { | 218 | 14 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 14 | AggregateFunctionTemplate>( | 220 | 14 | result.release(), argument_types_, attr.is_window_function)); | 221 | 14 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 24 | [&](auto result_is_nullable) { | 217 | 24 | if (attr.enable_aggregate_function_null_v2) { | 218 | 24 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 24 | AggregateFunctionTemplate>( | 220 | 24 | result.release(), argument_types_, attr.is_window_function)); | 221 | 24 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 26 | [&](auto result_is_nullable) { | 217 | 26 | if (attr.enable_aggregate_function_null_v2) { | 218 | 26 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 26 | AggregateFunctionTemplate>( | 220 | 26 | result.release(), argument_types_, attr.is_window_function)); | 221 | 26 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 26 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 394 | [&](auto result_is_nullable) { | 217 | 394 | if (attr.enable_aggregate_function_null_v2) { | 218 | 151 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 151 | AggregateFunctionTemplate>( | 220 | 151 | result.release(), argument_types_, attr.is_window_function)); | 221 | 243 | } else { | 222 | 243 | result.reset(new NullableT<true, result_is_nullable, | 223 | 243 | AggregateFunctionTemplate>( | 224 | 243 | result.release(), argument_types_, attr.is_window_function)); | 225 | 243 | } | 226 | 394 | }, |
_ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 342 | [&](auto result_is_nullable) { | 217 | 342 | if (attr.enable_aggregate_function_null_v2) { | 218 | 96 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 96 | AggregateFunctionTemplate>( | 220 | 96 | result.release(), argument_types_, attr.is_window_function)); | 221 | 246 | } else { | 222 | 246 | result.reset(new NullableT<true, result_is_nullable, | 223 | 246 | AggregateFunctionTemplate>( | 224 | 246 | result.release(), argument_types_, attr.is_window_function)); | 225 | 246 | } | 226 | 342 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 216 | 284 | [&](auto result_is_nullable) { | 217 | 284 | if (attr.enable_aggregate_function_null_v2) { | 218 | 38 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 38 | AggregateFunctionTemplate>( | 220 | 38 | result.release(), argument_types_, attr.is_window_function)); | 221 | 246 | } else { | 222 | 246 | result.reset(new NullableT<true, result_is_nullable, | 223 | 246 | AggregateFunctionTemplate>( | 224 | 246 | result.release(), argument_types_, attr.is_window_function)); | 225 | 246 | } | 226 | 284 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 25 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 272 | [&](auto result_is_nullable) { | 217 | 272 | if (attr.enable_aggregate_function_null_v2) { | 218 | 28 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 28 | AggregateFunctionTemplate>( | 220 | 28 | result.release(), argument_types_, attr.is_window_function)); | 221 | 244 | } else { | 222 | 244 | result.reset(new NullableT<true, result_is_nullable, | 223 | 244 | AggregateFunctionTemplate>( | 224 | 244 | result.release(), argument_types_, attr.is_window_function)); | 225 | 244 | } | 226 | 272 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 270 | [&](auto result_is_nullable) { | 217 | 270 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 245 | } else { | 222 | 245 | result.reset(new NullableT<true, result_is_nullable, | 223 | 245 | AggregateFunctionTemplate>( | 224 | 245 | result.release(), argument_types_, attr.is_window_function)); | 225 | 245 | } | 226 | 270 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ |
227 | 7.90k | make_bool_variant(result_is_nullable)); |
228 | 7.90k | } |
229 | 8.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
230 | 8.21k | return AggregateFunctionPtr(result.release()); |
231 | 8.21k | } Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 330 | TArgs&&... args) { | 208 | 330 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 330 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 330 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 330 | if (have_nullable(argument_types_)) { | 215 | 315 | std::visit( | 216 | 315 | [&](auto result_is_nullable) { | 217 | 315 | if (attr.enable_aggregate_function_null_v2) { | 218 | 315 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 315 | AggregateFunctionTemplate>( | 220 | 315 | result.release(), argument_types_, attr.is_window_function)); | 221 | 315 | } else { | 222 | 315 | result.reset(new NullableT<true, result_is_nullable, | 223 | 315 | AggregateFunctionTemplate>( | 224 | 315 | result.release(), argument_types_, attr.is_window_function)); | 225 | 315 | } | 226 | 315 | }, | 227 | 315 | make_bool_variant(result_is_nullable)); | 228 | 315 | } | 229 | 330 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 330 | return AggregateFunctionPtr(result.release()); | 231 | 330 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 15 | TArgs&&... args) { | 208 | 15 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 15 | if (have_nullable(argument_types_)) { | 215 | 15 | std::visit( | 216 | 15 | [&](auto result_is_nullable) { | 217 | 15 | if (attr.enable_aggregate_function_null_v2) { | 218 | 15 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 15 | AggregateFunctionTemplate>( | 220 | 15 | result.release(), argument_types_, attr.is_window_function)); | 221 | 15 | } else { | 222 | 15 | result.reset(new NullableT<true, result_is_nullable, | 223 | 15 | AggregateFunctionTemplate>( | 224 | 15 | result.release(), argument_types_, attr.is_window_function)); | 225 | 15 | } | 226 | 15 | }, | 227 | 15 | make_bool_variant(result_is_nullable)); | 228 | 15 | } | 229 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 15 | return AggregateFunctionPtr(result.release()); | 231 | 15 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 5 | TArgs&&... args) { | 208 | 5 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 5 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 5 | return AggregateFunctionPtr(result.release()); | 231 | 5 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 8 | std::visit( | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 8 | result.reset(new NullableT<true, result_is_nullable, | 223 | 8 | AggregateFunctionTemplate>( | 224 | 8 | result.release(), argument_types_, attr.is_window_function)); | 225 | 8 | } | 226 | 8 | }, | 227 | 8 | make_bool_variant(result_is_nullable)); | 228 | 8 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 6 | TArgs&&... args) { | 208 | 6 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 6 | if (have_nullable(argument_types_)) { | 215 | 6 | std::visit( | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, | 227 | 6 | make_bool_variant(result_is_nullable)); | 228 | 6 | } | 229 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 6 | return AggregateFunctionPtr(result.release()); | 231 | 6 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1.89k | TArgs&&... args) { | 208 | 1.89k | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1.89k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1.89k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1.89k | if (have_nullable(argument_types_)) { | 215 | 1.86k | std::visit( | 216 | 1.86k | [&](auto result_is_nullable) { | 217 | 1.86k | if (attr.enable_aggregate_function_null_v2) { | 218 | 1.86k | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1.86k | AggregateFunctionTemplate>( | 220 | 1.86k | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.86k | } else { | 222 | 1.86k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.86k | AggregateFunctionTemplate>( | 224 | 1.86k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.86k | } | 226 | 1.86k | }, | 227 | 1.86k | make_bool_variant(result_is_nullable)); | 228 | 1.86k | } | 229 | 1.89k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1.89k | return AggregateFunctionPtr(result.release()); | 231 | 1.89k | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 572 | TArgs&&... args) { | 208 | 572 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 572 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 572 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 572 | if (have_nullable(argument_types_)) { | 215 | 572 | std::visit( | 216 | 572 | [&](auto result_is_nullable) { | 217 | 572 | if (attr.enable_aggregate_function_null_v2) { | 218 | 572 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 572 | AggregateFunctionTemplate>( | 220 | 572 | result.release(), argument_types_, attr.is_window_function)); | 221 | 572 | } else { | 222 | 572 | result.reset(new NullableT<true, result_is_nullable, | 223 | 572 | AggregateFunctionTemplate>( | 224 | 572 | result.release(), argument_types_, attr.is_window_function)); | 225 | 572 | } | 226 | 572 | }, | 227 | 572 | make_bool_variant(result_is_nullable)); | 228 | 572 | } | 229 | 572 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 572 | return AggregateFunctionPtr(result.release()); | 231 | 572 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 303 | TArgs&&... args) { | 208 | 303 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 303 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 303 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 303 | if (have_nullable(argument_types_)) { | 215 | 303 | std::visit( | 216 | 303 | [&](auto result_is_nullable) { | 217 | 303 | if (attr.enable_aggregate_function_null_v2) { | 218 | 303 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 303 | AggregateFunctionTemplate>( | 220 | 303 | result.release(), argument_types_, attr.is_window_function)); | 221 | 303 | } else { | 222 | 303 | result.reset(new NullableT<true, result_is_nullable, | 223 | 303 | AggregateFunctionTemplate>( | 224 | 303 | result.release(), argument_types_, attr.is_window_function)); | 225 | 303 | } | 226 | 303 | }, | 227 | 303 | make_bool_variant(result_is_nullable)); | 228 | 303 | } | 229 | 303 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 303 | return AggregateFunctionPtr(result.release()); | 231 | 303 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 292 | TArgs&&... args) { | 208 | 292 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 292 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 292 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 292 | if (have_nullable(argument_types_)) { | 215 | 291 | std::visit( | 216 | 291 | [&](auto result_is_nullable) { | 217 | 291 | if (attr.enable_aggregate_function_null_v2) { | 218 | 291 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 291 | AggregateFunctionTemplate>( | 220 | 291 | result.release(), argument_types_, attr.is_window_function)); | 221 | 291 | } else { | 222 | 291 | result.reset(new NullableT<true, result_is_nullable, | 223 | 291 | AggregateFunctionTemplate>( | 224 | 291 | result.release(), argument_types_, attr.is_window_function)); | 225 | 291 | } | 226 | 291 | }, | 227 | 291 | make_bool_variant(result_is_nullable)); | 228 | 291 | } | 229 | 292 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 292 | return AggregateFunctionPtr(result.release()); | 231 | 292 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 5 | TArgs&&... args) { | 208 | 5 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 5 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 5 | return AggregateFunctionPtr(result.release()); | 231 | 5 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 8 | std::visit( | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 8 | result.reset(new NullableT<true, result_is_nullable, | 223 | 8 | AggregateFunctionTemplate>( | 224 | 8 | result.release(), argument_types_, attr.is_window_function)); | 225 | 8 | } | 226 | 8 | }, | 227 | 8 | make_bool_variant(result_is_nullable)); | 228 | 8 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 300 | TArgs&&... args) { | 208 | 300 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 300 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 300 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 300 | if (have_nullable(argument_types_)) { | 215 | 276 | std::visit( | 216 | 276 | [&](auto result_is_nullable) { | 217 | 276 | if (attr.enable_aggregate_function_null_v2) { | 218 | 276 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 276 | AggregateFunctionTemplate>( | 220 | 276 | result.release(), argument_types_, attr.is_window_function)); | 221 | 276 | } else { | 222 | 276 | result.reset(new NullableT<true, result_is_nullable, | 223 | 276 | AggregateFunctionTemplate>( | 224 | 276 | result.release(), argument_types_, attr.is_window_function)); | 225 | 276 | } | 226 | 276 | }, | 227 | 276 | make_bool_variant(result_is_nullable)); | 228 | 276 | } | 229 | 300 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 300 | return AggregateFunctionPtr(result.release()); | 231 | 300 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 41 | TArgs&&... args) { | 208 | 41 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 41 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 41 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 41 | if (have_nullable(argument_types_)) { | 215 | 25 | std::visit( | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 25 | result.reset(new NullableT<true, result_is_nullable, | 223 | 25 | AggregateFunctionTemplate>( | 224 | 25 | result.release(), argument_types_, attr.is_window_function)); | 225 | 25 | } | 226 | 25 | }, | 227 | 25 | make_bool_variant(result_is_nullable)); | 228 | 25 | } | 229 | 41 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 41 | return AggregateFunctionPtr(result.release()); | 231 | 41 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 3 | TArgs&&... args) { | 208 | 3 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 3 | if (have_nullable(argument_types_)) { | 215 | 3 | std::visit( | 216 | 3 | [&](auto result_is_nullable) { | 217 | 3 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 3 | } else { | 222 | 3 | result.reset(new NullableT<true, result_is_nullable, | 223 | 3 | AggregateFunctionTemplate>( | 224 | 3 | result.release(), argument_types_, attr.is_window_function)); | 225 | 3 | } | 226 | 3 | }, | 227 | 3 | make_bool_variant(result_is_nullable)); | 228 | 3 | } | 229 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 3 | return AggregateFunctionPtr(result.release()); | 231 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1 | TArgs&&... args) { | 208 | 1 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1 | if (have_nullable(argument_types_)) { | 215 | 1 | std::visit( | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 1 | result.reset(new NullableT<true, result_is_nullable, | 223 | 1 | AggregateFunctionTemplate>( | 224 | 1 | result.release(), argument_types_, attr.is_window_function)); | 225 | 1 | } | 226 | 1 | }, | 227 | 1 | make_bool_variant(result_is_nullable)); | 228 | 1 | } | 229 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1 | return AggregateFunctionPtr(result.release()); | 231 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 259 | TArgs&&... args) { | 208 | 259 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 259 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 259 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 259 | if (have_nullable(argument_types_)) { | 215 | 253 | std::visit( | 216 | 253 | [&](auto result_is_nullable) { | 217 | 253 | if (attr.enable_aggregate_function_null_v2) { | 218 | 253 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 253 | AggregateFunctionTemplate>( | 220 | 253 | result.release(), argument_types_, attr.is_window_function)); | 221 | 253 | } else { | 222 | 253 | result.reset(new NullableT<true, result_is_nullable, | 223 | 253 | AggregateFunctionTemplate>( | 224 | 253 | result.release(), argument_types_, attr.is_window_function)); | 225 | 253 | } | 226 | 253 | }, | 227 | 253 | make_bool_variant(result_is_nullable)); | 228 | 253 | } | 229 | 259 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 259 | return AggregateFunctionPtr(result.release()); | 231 | 259 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1 | TArgs&&... args) { | 208 | 1 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1 | if (have_nullable(argument_types_)) { | 215 | 1 | std::visit( | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 1 | result.reset(new NullableT<true, result_is_nullable, | 223 | 1 | AggregateFunctionTemplate>( | 224 | 1 | result.release(), argument_types_, attr.is_window_function)); | 225 | 1 | } | 226 | 1 | }, | 227 | 1 | make_bool_variant(result_is_nullable)); | 228 | 1 | } | 229 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1 | return AggregateFunctionPtr(result.release()); | 231 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 248 | TArgs&&... args) { | 208 | 248 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 248 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 248 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 248 | if (have_nullable(argument_types_)) { | 215 | 248 | std::visit( | 216 | 248 | [&](auto result_is_nullable) { | 217 | 248 | if (attr.enable_aggregate_function_null_v2) { | 218 | 248 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 248 | AggregateFunctionTemplate>( | 220 | 248 | result.release(), argument_types_, attr.is_window_function)); | 221 | 248 | } else { | 222 | 248 | result.reset(new NullableT<true, result_is_nullable, | 223 | 248 | AggregateFunctionTemplate>( | 224 | 248 | result.release(), argument_types_, attr.is_window_function)); | 225 | 248 | } | 226 | 248 | }, | 227 | 248 | make_bool_variant(result_is_nullable)); | 228 | 248 | } | 229 | 248 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 248 | return AggregateFunctionPtr(result.release()); | 231 | 248 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 570 | TArgs&&... args) { | 208 | 570 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 570 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 570 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 570 | if (have_nullable(argument_types_)) { | 215 | 557 | std::visit( | 216 | 557 | [&](auto result_is_nullable) { | 217 | 557 | if (attr.enable_aggregate_function_null_v2) { | 218 | 557 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 557 | AggregateFunctionTemplate>( | 220 | 557 | result.release(), argument_types_, attr.is_window_function)); | 221 | 557 | } else { | 222 | 557 | result.reset(new NullableT<true, result_is_nullable, | 223 | 557 | AggregateFunctionTemplate>( | 224 | 557 | result.release(), argument_types_, attr.is_window_function)); | 225 | 557 | } | 226 | 557 | }, | 227 | 557 | make_bool_variant(result_is_nullable)); | 228 | 557 | } | 229 | 570 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 570 | return AggregateFunctionPtr(result.release()); | 231 | 570 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 37 | TArgs&&... args) { | 208 | 37 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 37 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 37 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 37 | if (have_nullable(argument_types_)) { | 215 | 29 | std::visit( | 216 | 29 | [&](auto result_is_nullable) { | 217 | 29 | if (attr.enable_aggregate_function_null_v2) { | 218 | 29 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 29 | AggregateFunctionTemplate>( | 220 | 29 | result.release(), argument_types_, attr.is_window_function)); | 221 | 29 | } else { | 222 | 29 | result.reset(new NullableT<true, result_is_nullable, | 223 | 29 | AggregateFunctionTemplate>( | 224 | 29 | result.release(), argument_types_, attr.is_window_function)); | 225 | 29 | } | 226 | 29 | }, | 227 | 29 | make_bool_variant(result_is_nullable)); | 228 | 29 | } | 229 | 37 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 37 | return AggregateFunctionPtr(result.release()); | 231 | 37 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 23 | TArgs&&... args) { | 208 | 23 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 23 | if (have_nullable(argument_types_)) { | 215 | 17 | std::visit( | 216 | 17 | [&](auto result_is_nullable) { | 217 | 17 | if (attr.enable_aggregate_function_null_v2) { | 218 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 17 | AggregateFunctionTemplate>( | 220 | 17 | result.release(), argument_types_, attr.is_window_function)); | 221 | 17 | } else { | 222 | 17 | result.reset(new NullableT<true, result_is_nullable, | 223 | 17 | AggregateFunctionTemplate>( | 224 | 17 | result.release(), argument_types_, attr.is_window_function)); | 225 | 17 | } | 226 | 17 | }, | 227 | 17 | make_bool_variant(result_is_nullable)); | 228 | 17 | } | 229 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 23 | return AggregateFunctionPtr(result.release()); | 231 | 23 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 22 | TArgs&&... args) { | 208 | 22 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 22 | if (have_nullable(argument_types_)) { | 215 | 20 | std::visit( | 216 | 20 | [&](auto result_is_nullable) { | 217 | 20 | if (attr.enable_aggregate_function_null_v2) { | 218 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 20 | AggregateFunctionTemplate>( | 220 | 20 | result.release(), argument_types_, attr.is_window_function)); | 221 | 20 | } else { | 222 | 20 | result.reset(new NullableT<true, result_is_nullable, | 223 | 20 | AggregateFunctionTemplate>( | 224 | 20 | result.release(), argument_types_, attr.is_window_function)); | 225 | 20 | } | 226 | 20 | }, | 227 | 20 | make_bool_variant(result_is_nullable)); | 228 | 20 | } | 229 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 22 | return AggregateFunctionPtr(result.release()); | 231 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1.31k | TArgs&&... args) { | 208 | 1.31k | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1.31k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1.31k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1.31k | if (have_nullable(argument_types_)) { | 215 | 1.31k | std::visit( | 216 | 1.31k | [&](auto result_is_nullable) { | 217 | 1.31k | if (attr.enable_aggregate_function_null_v2) { | 218 | 1.31k | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1.31k | AggregateFunctionTemplate>( | 220 | 1.31k | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.31k | } else { | 222 | 1.31k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.31k | AggregateFunctionTemplate>( | 224 | 1.31k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.31k | } | 226 | 1.31k | }, | 227 | 1.31k | make_bool_variant(result_is_nullable)); | 228 | 1.31k | } | 229 | 1.31k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1.31k | return AggregateFunctionPtr(result.release()); | 231 | 1.31k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 6 | std::visit( | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, | 227 | 6 | make_bool_variant(result_is_nullable)); | 228 | 6 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 14 | TArgs&&... args) { | 208 | 14 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 14 | if (have_nullable(argument_types_)) { | 215 | 14 | std::visit( | 216 | 14 | [&](auto result_is_nullable) { | 217 | 14 | if (attr.enable_aggregate_function_null_v2) { | 218 | 14 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 14 | AggregateFunctionTemplate>( | 220 | 14 | result.release(), argument_types_, attr.is_window_function)); | 221 | 14 | } else { | 222 | 14 | result.reset(new NullableT<true, result_is_nullable, | 223 | 14 | AggregateFunctionTemplate>( | 224 | 14 | result.release(), argument_types_, attr.is_window_function)); | 225 | 14 | } | 226 | 14 | }, | 227 | 14 | make_bool_variant(result_is_nullable)); | 228 | 14 | } | 229 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 14 | return AggregateFunctionPtr(result.release()); | 231 | 14 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 28 | TArgs&&... args) { | 208 | 28 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 28 | if (have_nullable(argument_types_)) { | 215 | 24 | std::visit( | 216 | 24 | [&](auto result_is_nullable) { | 217 | 24 | if (attr.enable_aggregate_function_null_v2) { | 218 | 24 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 24 | AggregateFunctionTemplate>( | 220 | 24 | result.release(), argument_types_, attr.is_window_function)); | 221 | 24 | } else { | 222 | 24 | result.reset(new NullableT<true, result_is_nullable, | 223 | 24 | AggregateFunctionTemplate>( | 224 | 24 | result.release(), argument_types_, attr.is_window_function)); | 225 | 24 | } | 226 | 24 | }, | 227 | 24 | make_bool_variant(result_is_nullable)); | 228 | 24 | } | 229 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 28 | return AggregateFunctionPtr(result.release()); | 231 | 28 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 42 | TArgs&&... args) { | 208 | 42 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 42 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 42 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 42 | if (have_nullable(argument_types_)) { | 215 | 26 | std::visit( | 216 | 26 | [&](auto result_is_nullable) { | 217 | 26 | if (attr.enable_aggregate_function_null_v2) { | 218 | 26 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 26 | AggregateFunctionTemplate>( | 220 | 26 | result.release(), argument_types_, attr.is_window_function)); | 221 | 26 | } else { | 222 | 26 | result.reset(new NullableT<true, result_is_nullable, | 223 | 26 | AggregateFunctionTemplate>( | 224 | 26 | result.release(), argument_types_, attr.is_window_function)); | 225 | 26 | } | 226 | 26 | }, | 227 | 26 | make_bool_variant(result_is_nullable)); | 228 | 26 | } | 229 | 42 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 42 | return AggregateFunctionPtr(result.release()); | 231 | 42 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 11 | TArgs&&... args) { | 208 | 11 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 11 | if (have_nullable(argument_types_)) { | 215 | 11 | std::visit( | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 11 | result.reset(new NullableT<true, result_is_nullable, | 223 | 11 | AggregateFunctionTemplate>( | 224 | 11 | result.release(), argument_types_, attr.is_window_function)); | 225 | 11 | } | 226 | 11 | }, | 227 | 11 | make_bool_variant(result_is_nullable)); | 228 | 11 | } | 229 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 11 | return AggregateFunctionPtr(result.release()); | 231 | 11 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 6 | TArgs&&... args) { | 208 | 6 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 6 | if (have_nullable(argument_types_)) { | 215 | 0 | std::visit( | 216 | 0 | [&](auto result_is_nullable) { | 217 | 0 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 0 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 0 | }, | 227 | 0 | make_bool_variant(result_is_nullable)); | 228 | 0 | } | 229 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 6 | return AggregateFunctionPtr(result.release()); | 231 | 6 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 455 | TArgs&&... args) { | 208 | 455 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 455 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 455 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 455 | if (have_nullable(argument_types_)) { | 215 | 396 | std::visit( | 216 | 396 | [&](auto result_is_nullable) { | 217 | 396 | if (attr.enable_aggregate_function_null_v2) { | 218 | 396 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 396 | AggregateFunctionTemplate>( | 220 | 396 | result.release(), argument_types_, attr.is_window_function)); | 221 | 396 | } else { | 222 | 396 | result.reset(new NullableT<true, result_is_nullable, | 223 | 396 | AggregateFunctionTemplate>( | 224 | 396 | result.release(), argument_types_, attr.is_window_function)); | 225 | 396 | } | 226 | 396 | }, | 227 | 396 | make_bool_variant(result_is_nullable)); | 228 | 396 | } | 229 | 455 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 455 | return AggregateFunctionPtr(result.release()); | 231 | 455 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 404 | TArgs&&... args) { | 208 | 404 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 404 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 404 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 404 | if (have_nullable(argument_types_)) { | 215 | 342 | std::visit( | 216 | 342 | [&](auto result_is_nullable) { | 217 | 342 | if (attr.enable_aggregate_function_null_v2) { | 218 | 342 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 342 | AggregateFunctionTemplate>( | 220 | 342 | result.release(), argument_types_, attr.is_window_function)); | 221 | 342 | } else { | 222 | 342 | result.reset(new NullableT<true, result_is_nullable, | 223 | 342 | AggregateFunctionTemplate>( | 224 | 342 | result.release(), argument_types_, attr.is_window_function)); | 225 | 342 | } | 226 | 342 | }, | 227 | 342 | make_bool_variant(result_is_nullable)); | 228 | 342 | } | 229 | 404 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 404 | return AggregateFunctionPtr(result.release()); | 231 | 404 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 291 | TArgs&&... args) { | 208 | 291 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 291 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 291 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 291 | if (have_nullable(argument_types_)) { | 215 | 284 | std::visit( | 216 | 284 | [&](auto result_is_nullable) { | 217 | 284 | if (attr.enable_aggregate_function_null_v2) { | 218 | 284 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 284 | AggregateFunctionTemplate>( | 220 | 284 | result.release(), argument_types_, attr.is_window_function)); | 221 | 284 | } else { | 222 | 284 | result.reset(new NullableT<true, result_is_nullable, | 223 | 284 | AggregateFunctionTemplate>( | 224 | 284 | result.release(), argument_types_, attr.is_window_function)); | 225 | 284 | } | 226 | 284 | }, | 227 | 284 | make_bool_variant(result_is_nullable)); | 228 | 284 | } | 229 | 291 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 291 | return AggregateFunctionPtr(result.release()); | 231 | 291 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 26 | TArgs&&... args) { | 208 | 26 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 26 | if (have_nullable(argument_types_)) { | 215 | 25 | std::visit( | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 25 | result.reset(new NullableT<true, result_is_nullable, | 223 | 25 | AggregateFunctionTemplate>( | 224 | 25 | result.release(), argument_types_, attr.is_window_function)); | 225 | 25 | } | 226 | 25 | }, | 227 | 25 | make_bool_variant(result_is_nullable)); | 228 | 25 | } | 229 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 26 | return AggregateFunctionPtr(result.release()); | 231 | 26 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 277 | TArgs&&... args) { | 208 | 277 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 277 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 277 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 277 | if (have_nullable(argument_types_)) { | 215 | 272 | std::visit( | 216 | 272 | [&](auto result_is_nullable) { | 217 | 272 | if (attr.enable_aggregate_function_null_v2) { | 218 | 272 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 272 | AggregateFunctionTemplate>( | 220 | 272 | result.release(), argument_types_, attr.is_window_function)); | 221 | 272 | } else { | 222 | 272 | result.reset(new NullableT<true, result_is_nullable, | 223 | 272 | AggregateFunctionTemplate>( | 224 | 272 | result.release(), argument_types_, attr.is_window_function)); | 225 | 272 | } | 226 | 272 | }, | 227 | 272 | make_bool_variant(result_is_nullable)); | 228 | 272 | } | 229 | 277 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 277 | return AggregateFunctionPtr(result.release()); | 231 | 277 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 276 | TArgs&&... args) { | 208 | 276 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 276 | if (have_nullable(argument_types_)) { | 215 | 270 | std::visit( | 216 | 270 | [&](auto result_is_nullable) { | 217 | 270 | if (attr.enable_aggregate_function_null_v2) { | 218 | 270 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 270 | AggregateFunctionTemplate>( | 220 | 270 | result.release(), argument_types_, attr.is_window_function)); | 221 | 270 | } else { | 222 | 270 | result.reset(new NullableT<true, result_is_nullable, | 223 | 270 | AggregateFunctionTemplate>( | 224 | 270 | result.release(), argument_types_, attr.is_window_function)); | 225 | 270 | } | 226 | 270 | }, | 227 | 270 | make_bool_variant(result_is_nullable)); | 228 | 270 | } | 229 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 276 | return AggregateFunctionPtr(result.release()); | 231 | 276 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 13 | TArgs&&... args) { | 208 | 13 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 13 | if (have_nullable(argument_types_)) { | 215 | 11 | std::visit( | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 11 | result.reset(new NullableT<true, result_is_nullable, | 223 | 11 | AggregateFunctionTemplate>( | 224 | 11 | result.release(), argument_types_, attr.is_window_function)); | 225 | 11 | } | 226 | 11 | }, | 227 | 11 | make_bool_variant(result_is_nullable)); | 228 | 11 | } | 229 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 13 | return AggregateFunctionPtr(result.release()); | 231 | 13 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 18 | TArgs&&... args) { | 208 | 18 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 18 | if (have_nullable(argument_types_)) { | 215 | 0 | std::visit( | 216 | 0 | [&](auto result_is_nullable) { | 217 | 0 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 0 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 0 | }, | 227 | 0 | make_bool_variant(result_is_nullable)); | 228 | 0 | } | 229 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 18 | return AggregateFunctionPtr(result.release()); | 231 | 18 | } |
|
232 | | |
233 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
234 | | static AggregateFunctionPtr create_multi_arguments_return_not_nullable( |
235 | | const DataTypes& argument_types_, const bool result_is_nullable, |
236 | 757 | const AggregateFunctionAttr& attr, TArgs&&... args) { |
237 | 757 | if (!(argument_types_.size() > 1)) { |
238 | 0 | throw doris::Exception( |
239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
240 | 0 | "argument_types_ size must be > 1")); |
241 | 0 | } |
242 | 757 | if (!attr.is_foreach && result_is_nullable) { |
243 | 0 | throw doris::Exception( |
244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
245 | 0 | "result_is_nullable must be false")); |
246 | 0 | } |
247 | 757 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
248 | 757 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
249 | 757 | if (have_nullable(argument_types_)) { |
250 | 656 | if (attr.enable_aggregate_function_null_v2) { |
251 | 164 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
252 | 164 | result.release(), argument_types_, attr.is_window_function)); |
253 | 492 | } else { |
254 | 492 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
255 | 492 | result.release(), argument_types_, attr.is_window_function)); |
256 | 492 | } |
257 | 656 | } |
258 | 757 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
259 | 757 | return AggregateFunctionPtr(result.release()); |
260 | 757 | } Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 246 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 246 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 246 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 246 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 246 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 246 | if (have_nullable(argument_types_)) { | 250 | 246 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 246 | } else { | 254 | 246 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 246 | result.release(), argument_types_, attr.is_window_function)); | 256 | 246 | } | 257 | 246 | } | 258 | 246 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 246 | return AggregateFunctionPtr(result.release()); | 260 | 246 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 4 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 4 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 4 | if (have_nullable(argument_types_)) { | 250 | 4 | if (attr.enable_aggregate_function_null_v2) { | 251 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 4 | result.release(), argument_types_, attr.is_window_function)); | 253 | 4 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 4 | } | 258 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 4 | return AggregateFunctionPtr(result.release()); | 260 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 6 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 6 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 6 | if (have_nullable(argument_types_)) { | 250 | 6 | if (attr.enable_aggregate_function_null_v2) { | 251 | 6 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 6 | result.release(), argument_types_, attr.is_window_function)); | 253 | 6 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 6 | } | 258 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 6 | return AggregateFunctionPtr(result.release()); | 260 | 6 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 45 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 45 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 45 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 45 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 45 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 45 | if (have_nullable(argument_types_)) { | 250 | 39 | if (attr.enable_aggregate_function_null_v2) { | 251 | 39 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 39 | result.release(), argument_types_, attr.is_window_function)); | 253 | 39 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 39 | } | 258 | 45 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 45 | return AggregateFunctionPtr(result.release()); | 260 | 45 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 13 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 13 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 13 | if (have_nullable(argument_types_)) { | 250 | 12 | if (attr.enable_aggregate_function_null_v2) { | 251 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 12 | result.release(), argument_types_, attr.is_window_function)); | 253 | 12 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 12 | } | 258 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 13 | return AggregateFunctionPtr(result.release()); | 260 | 13 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 4 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 4 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 4 | if (have_nullable(argument_types_)) { | 250 | 4 | if (attr.enable_aggregate_function_null_v2) { | 251 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 4 | result.release(), argument_types_, attr.is_window_function)); | 253 | 4 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 4 | } | 258 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 4 | return AggregateFunctionPtr(result.release()); | 260 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 2 | if (attr.enable_aggregate_function_null_v2) { | 251 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 2 | result.release(), argument_types_, attr.is_window_function)); | 253 | 2 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 2 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 13 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 13 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 13 | if (have_nullable(argument_types_)) { | 250 | 13 | if (attr.enable_aggregate_function_null_v2) { | 251 | 13 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 13 | result.release(), argument_types_, attr.is_window_function)); | 253 | 13 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 13 | } | 258 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 13 | return AggregateFunctionPtr(result.release()); | 260 | 13 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 3 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 3 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 3 | if (have_nullable(argument_types_)) { | 250 | 2 | if (attr.enable_aggregate_function_null_v2) { | 251 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 2 | result.release(), argument_types_, attr.is_window_function)); | 253 | 2 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 2 | } | 258 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 3 | return AggregateFunctionPtr(result.release()); | 260 | 3 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 276 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 276 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 276 | if (have_nullable(argument_types_)) { | 250 | 262 | if (attr.enable_aggregate_function_null_v2) { | 251 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 16 | result.release(), argument_types_, attr.is_window_function)); | 253 | 246 | } else { | 254 | 246 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 246 | result.release(), argument_types_, attr.is_window_function)); | 256 | 246 | } | 257 | 262 | } | 258 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 276 | return AggregateFunctionPtr(result.release()); | 260 | 276 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
|
261 | | |
262 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
263 | | static AggregateFunctionPtr create_unary_arguments(const DataTypes& argument_types_, |
264 | | const bool result_is_nullable, |
265 | | const AggregateFunctionAttr& attr, |
266 | 112k | TArgs&&... args) { |
267 | 112k | if (!(argument_types_.size() == 1)) { |
268 | 0 | throw doris::Exception(Status::InternalError( |
269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); |
270 | 0 | } |
271 | 112k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
272 | 112k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
273 | 112k | if (have_nullable(argument_types_)) { |
274 | 64.2k | std::visit( |
275 | 64.2k | [&](auto result_is_nullable) { |
276 | 64.2k | if (attr.enable_aggregate_function_null_v2) { |
277 | 44.2k | result.reset(new NullableV2T<false, result_is_nullable, |
278 | 44.2k | AggregateFunctionTemplate>( |
279 | 44.2k | result.release(), argument_types_, attr.is_window_function)); |
280 | 44.2k | } else { |
281 | 20.0k | result.reset(new NullableT<false, result_is_nullable, |
282 | 20.0k | AggregateFunctionTemplate>( |
283 | 20.0k | result.release(), argument_types_, attr.is_window_function)); |
284 | 20.0k | } |
285 | 64.2k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 893 | [&](auto result_is_nullable) { | 276 | 893 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 893 | } else { | 281 | 893 | result.reset(new NullableT<false, result_is_nullable, | 282 | 893 | AggregateFunctionTemplate>( | 283 | 893 | result.release(), argument_types_, attr.is_window_function)); | 284 | 893 | } | 285 | 893 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 104 | [&](auto result_is_nullable) { | 276 | 104 | if (attr.enable_aggregate_function_null_v2) { | 277 | 104 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 104 | AggregateFunctionTemplate>( | 279 | 104 | result.release(), argument_types_, attr.is_window_function)); | 280 | 104 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 104 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 26 | [&](auto result_is_nullable) { | 276 | 26 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 26 | } else { | 281 | 26 | result.reset(new NullableT<false, result_is_nullable, | 282 | 26 | AggregateFunctionTemplate>( | 283 | 26 | result.release(), argument_types_, attr.is_window_function)); | 284 | 26 | } | 285 | 26 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 703 | [&](auto result_is_nullable) { | 276 | 703 | if (attr.enable_aggregate_function_null_v2) { | 277 | 677 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 677 | AggregateFunctionTemplate>( | 279 | 677 | result.release(), argument_types_, attr.is_window_function)); | 280 | 677 | } else { | 281 | 26 | result.reset(new NullableT<false, result_is_nullable, | 282 | 26 | AggregateFunctionTemplate>( | 283 | 26 | result.release(), argument_types_, attr.is_window_function)); | 284 | 26 | } | 285 | 703 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 1 | [&](auto result_is_nullable) { | 276 | 1 | if (attr.enable_aggregate_function_null_v2) { | 277 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1 | AggregateFunctionTemplate>( | 279 | 1 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 576 | [&](auto result_is_nullable) { | 276 | 576 | if (attr.enable_aggregate_function_null_v2) { | 277 | 453 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 453 | AggregateFunctionTemplate>( | 279 | 453 | result.release(), argument_types_, attr.is_window_function)); | 280 | 453 | } else { | 281 | 123 | result.reset(new NullableT<false, result_is_nullable, | 282 | 123 | AggregateFunctionTemplate>( | 283 | 123 | result.release(), argument_types_, attr.is_window_function)); | 284 | 123 | } | 285 | 576 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 9 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 1 | [&](auto result_is_nullable) { | 276 | 1 | if (attr.enable_aggregate_function_null_v2) { | 277 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1 | AggregateFunctionTemplate>( | 279 | 1 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 142 | [&](auto result_is_nullable) { | 276 | 142 | if (attr.enable_aggregate_function_null_v2) { | 277 | 36 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 36 | AggregateFunctionTemplate>( | 279 | 36 | result.release(), argument_types_, attr.is_window_function)); | 280 | 106 | } else { | 281 | 106 | result.reset(new NullableT<false, result_is_nullable, | 282 | 106 | AggregateFunctionTemplate>( | 283 | 106 | result.release(), argument_types_, attr.is_window_function)); | 284 | 106 | } | 285 | 142 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 10 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 126 | [&](auto result_is_nullable) { | 276 | 126 | if (attr.enable_aggregate_function_null_v2) { | 277 | 66 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 66 | AggregateFunctionTemplate>( | 279 | 66 | result.release(), argument_types_, attr.is_window_function)); | 280 | 66 | } else { | 281 | 60 | result.reset(new NullableT<false, result_is_nullable, | 282 | 60 | AggregateFunctionTemplate>( | 283 | 60 | result.release(), argument_types_, attr.is_window_function)); | 284 | 60 | } | 285 | 126 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 9 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 53 | [&](auto result_is_nullable) { | 276 | 53 | if (attr.enable_aggregate_function_null_v2) { | 277 | 17 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 17 | AggregateFunctionTemplate>( | 279 | 17 | result.release(), argument_types_, attr.is_window_function)); | 280 | 36 | } else { | 281 | 36 | result.reset(new NullableT<false, result_is_nullable, | 282 | 36 | AggregateFunctionTemplate>( | 283 | 36 | result.release(), argument_types_, attr.is_window_function)); | 284 | 36 | } | 285 | 53 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 267 | [&](auto result_is_nullable) { | 276 | 267 | if (attr.enable_aggregate_function_null_v2) { | 277 | 23 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 23 | AggregateFunctionTemplate>( | 279 | 23 | result.release(), argument_types_, attr.is_window_function)); | 280 | 244 | } else { | 281 | 244 | result.reset(new NullableT<false, result_is_nullable, | 282 | 244 | AggregateFunctionTemplate>( | 283 | 244 | result.release(), argument_types_, attr.is_window_function)); | 284 | 244 | } | 285 | 267 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4.70k | [&](auto result_is_nullable) { | 276 | 4.70k | if (attr.enable_aggregate_function_null_v2) { | 277 | 4.03k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4.03k | AggregateFunctionTemplate>( | 279 | 4.03k | result.release(), argument_types_, attr.is_window_function)); | 280 | 4.03k | } else { | 281 | 671 | result.reset(new NullableT<false, result_is_nullable, | 282 | 671 | AggregateFunctionTemplate>( | 283 | 671 | result.release(), argument_types_, attr.is_window_function)); | 284 | 671 | } | 285 | 4.70k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 3.27k | [&](auto result_is_nullable) { | 276 | 3.27k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.03k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.03k | AggregateFunctionTemplate>( | 279 | 1.03k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.24k | } else { | 281 | 2.24k | result.reset(new NullableT<false, result_is_nullable, | 282 | 2.24k | AggregateFunctionTemplate>( | 283 | 2.24k | result.release(), argument_types_, attr.is_window_function)); | 284 | 2.24k | } | 285 | 3.27k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 691 | [&](auto result_is_nullable) { | 276 | 691 | if (attr.enable_aggregate_function_null_v2) { | 277 | 49 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 49 | AggregateFunctionTemplate>( | 279 | 49 | result.release(), argument_types_, attr.is_window_function)); | 280 | 642 | } else { | 281 | 642 | result.reset(new NullableT<false, result_is_nullable, | 282 | 642 | AggregateFunctionTemplate>( | 283 | 642 | result.release(), argument_types_, attr.is_window_function)); | 284 | 642 | } | 285 | 691 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 64 | [&](auto result_is_nullable) { | 276 | 64 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 64 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 1.43k | [&](auto result_is_nullable) { | 276 | 1.43k | if (attr.enable_aggregate_function_null_v2) { | 277 | 283 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 283 | AggregateFunctionTemplate>( | 279 | 283 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.15k | } else { | 281 | 1.15k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.15k | AggregateFunctionTemplate>( | 283 | 1.15k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.15k | } | 285 | 1.43k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 3.95k | [&](auto result_is_nullable) { | 276 | 3.95k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.92k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.92k | AggregateFunctionTemplate>( | 279 | 3.92k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.92k | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 3.95k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.61k | [&](auto result_is_nullable) { | 276 | 1.61k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.46k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.46k | AggregateFunctionTemplate>( | 279 | 1.46k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.46k | } else { | 281 | 143 | result.reset(new NullableT<false, result_is_nullable, | 282 | 143 | AggregateFunctionTemplate>( | 283 | 143 | result.release(), argument_types_, attr.is_window_function)); | 284 | 143 | } | 285 | 1.61k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 947 | [&](auto result_is_nullable) { | 276 | 947 | if (attr.enable_aggregate_function_null_v2) { | 277 | 786 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 786 | AggregateFunctionTemplate>( | 279 | 786 | result.release(), argument_types_, attr.is_window_function)); | 280 | 786 | } else { | 281 | 161 | result.reset(new NullableT<false, result_is_nullable, | 282 | 161 | AggregateFunctionTemplate>( | 283 | 161 | result.release(), argument_types_, attr.is_window_function)); | 284 | 161 | } | 285 | 947 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 223 | [&](auto result_is_nullable) { | 276 | 223 | if (attr.enable_aggregate_function_null_v2) { | 277 | 160 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 160 | AggregateFunctionTemplate>( | 279 | 160 | result.release(), argument_types_, attr.is_window_function)); | 280 | 160 | } else { | 281 | 63 | result.reset(new NullableT<false, result_is_nullable, | 282 | 63 | AggregateFunctionTemplate>( | 283 | 63 | result.release(), argument_types_, attr.is_window_function)); | 284 | 63 | } | 285 | 223 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 603 | [&](auto result_is_nullable) { | 276 | 603 | if (attr.enable_aggregate_function_null_v2) { | 277 | 327 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 327 | AggregateFunctionTemplate>( | 279 | 327 | result.release(), argument_types_, attr.is_window_function)); | 280 | 327 | } else { | 281 | 276 | result.reset(new NullableT<false, result_is_nullable, | 282 | 276 | AggregateFunctionTemplate>( | 283 | 276 | result.release(), argument_types_, attr.is_window_function)); | 284 | 276 | } | 285 | 603 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 640 | [&](auto result_is_nullable) { | 276 | 640 | if (attr.enable_aggregate_function_null_v2) { | 277 | 453 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 453 | AggregateFunctionTemplate>( | 279 | 453 | result.release(), argument_types_, attr.is_window_function)); | 280 | 453 | } else { | 281 | 187 | result.reset(new NullableT<false, result_is_nullable, | 282 | 187 | AggregateFunctionTemplate>( | 283 | 187 | result.release(), argument_types_, attr.is_window_function)); | 284 | 187 | } | 285 | 640 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 7.57k | [&](auto result_is_nullable) { | 276 | 7.57k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.68k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.68k | AggregateFunctionTemplate>( | 279 | 6.68k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.68k | } else { | 281 | 887 | result.reset(new NullableT<false, result_is_nullable, | 282 | 887 | AggregateFunctionTemplate>( | 283 | 887 | result.release(), argument_types_, attr.is_window_function)); | 284 | 887 | } | 285 | 7.57k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2.33k | [&](auto result_is_nullable) { | 276 | 2.33k | if (attr.enable_aggregate_function_null_v2) { | 277 | 2.09k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2.09k | AggregateFunctionTemplate>( | 279 | 2.09k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.09k | } else { | 281 | 245 | result.reset(new NullableT<false, result_is_nullable, | 282 | 245 | AggregateFunctionTemplate>( | 283 | 245 | result.release(), argument_types_, attr.is_window_function)); | 284 | 245 | } | 285 | 2.33k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 473 | [&](auto result_is_nullable) { | 276 | 473 | if (attr.enable_aggregate_function_null_v2) { | 277 | 209 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 209 | AggregateFunctionTemplate>( | 279 | 209 | result.release(), argument_types_, attr.is_window_function)); | 280 | 264 | } else { | 281 | 264 | result.reset(new NullableT<false, result_is_nullable, | 282 | 264 | AggregateFunctionTemplate>( | 283 | 264 | result.release(), argument_types_, attr.is_window_function)); | 284 | 264 | } | 285 | 473 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 444 | [&](auto result_is_nullable) { | 276 | 444 | if (attr.enable_aggregate_function_null_v2) { | 277 | 260 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 260 | AggregateFunctionTemplate>( | 279 | 260 | result.release(), argument_types_, attr.is_window_function)); | 280 | 260 | } else { | 281 | 184 | result.reset(new NullableT<false, result_is_nullable, | 282 | 184 | AggregateFunctionTemplate>( | 283 | 184 | result.release(), argument_types_, attr.is_window_function)); | 284 | 184 | } | 285 | 444 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 927 | [&](auto result_is_nullable) { | 276 | 927 | if (attr.enable_aggregate_function_null_v2) { | 277 | 428 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 428 | AggregateFunctionTemplate>( | 279 | 428 | result.release(), argument_types_, attr.is_window_function)); | 280 | 499 | } else { | 281 | 499 | result.reset(new NullableT<false, result_is_nullable, | 282 | 499 | AggregateFunctionTemplate>( | 283 | 499 | result.release(), argument_types_, attr.is_window_function)); | 284 | 499 | } | 285 | 927 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 242 | [&](auto result_is_nullable) { | 276 | 242 | if (attr.enable_aggregate_function_null_v2) { | 277 | 188 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 188 | AggregateFunctionTemplate>( | 279 | 188 | result.release(), argument_types_, attr.is_window_function)); | 280 | 188 | } else { | 281 | 54 | result.reset(new NullableT<false, result_is_nullable, | 282 | 54 | AggregateFunctionTemplate>( | 283 | 54 | result.release(), argument_types_, attr.is_window_function)); | 284 | 54 | } | 285 | 242 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.67k | [&](auto result_is_nullable) { | 276 | 1.67k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.60k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.60k | AggregateFunctionTemplate>( | 279 | 1.60k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.60k | } else { | 281 | 66 | result.reset(new NullableT<false, result_is_nullable, | 282 | 66 | AggregateFunctionTemplate>( | 283 | 66 | result.release(), argument_types_, attr.is_window_function)); | 284 | 66 | } | 285 | 1.67k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 570 | [&](auto result_is_nullable) { | 276 | 570 | if (attr.enable_aggregate_function_null_v2) { | 277 | 527 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 527 | AggregateFunctionTemplate>( | 279 | 527 | result.release(), argument_types_, attr.is_window_function)); | 280 | 527 | } else { | 281 | 43 | result.reset(new NullableT<false, result_is_nullable, | 282 | 43 | AggregateFunctionTemplate>( | 283 | 43 | result.release(), argument_types_, attr.is_window_function)); | 284 | 43 | } | 285 | 570 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 52 | [&](auto result_is_nullable) { | 276 | 52 | if (attr.enable_aggregate_function_null_v2) { | 277 | 39 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 39 | AggregateFunctionTemplate>( | 279 | 39 | result.release(), argument_types_, attr.is_window_function)); | 280 | 39 | } else { | 281 | 13 | result.reset(new NullableT<false, result_is_nullable, | 282 | 13 | AggregateFunctionTemplate>( | 283 | 13 | result.release(), argument_types_, attr.is_window_function)); | 284 | 13 | } | 285 | 52 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 3.10k | [&](auto result_is_nullable) { | 276 | 3.10k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.08k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.08k | AggregateFunctionTemplate>( | 279 | 3.08k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.08k | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 3.10k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.31k | [&](auto result_is_nullable) { | 276 | 1.31k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.26k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.26k | AggregateFunctionTemplate>( | 279 | 1.26k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.26k | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 1.31k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 633 | [&](auto result_is_nullable) { | 276 | 633 | if (attr.enable_aggregate_function_null_v2) { | 277 | 574 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 574 | AggregateFunctionTemplate>( | 279 | 574 | result.release(), argument_types_, attr.is_window_function)); | 280 | 574 | } else { | 281 | 59 | result.reset(new NullableT<false, result_is_nullable, | 282 | 59 | AggregateFunctionTemplate>( | 283 | 59 | result.release(), argument_types_, attr.is_window_function)); | 284 | 59 | } | 285 | 633 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 145 | [&](auto result_is_nullable) { | 276 | 145 | if (attr.enable_aggregate_function_null_v2) { | 277 | 106 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 106 | AggregateFunctionTemplate>( | 279 | 106 | result.release(), argument_types_, attr.is_window_function)); | 280 | 106 | } else { | 281 | 39 | result.reset(new NullableT<false, result_is_nullable, | 282 | 39 | AggregateFunctionTemplate>( | 283 | 39 | result.release(), argument_types_, attr.is_window_function)); | 284 | 39 | } | 285 | 145 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 365 | [&](auto result_is_nullable) { | 276 | 365 | if (attr.enable_aggregate_function_null_v2) { | 277 | 267 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 267 | AggregateFunctionTemplate>( | 279 | 267 | result.release(), argument_types_, attr.is_window_function)); | 280 | 267 | } else { | 281 | 98 | result.reset(new NullableT<false, result_is_nullable, | 282 | 98 | AggregateFunctionTemplate>( | 283 | 98 | result.release(), argument_types_, attr.is_window_function)); | 284 | 98 | } | 285 | 365 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 377 | [&](auto result_is_nullable) { | 276 | 377 | if (attr.enable_aggregate_function_null_v2) { | 277 | 293 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 293 | AggregateFunctionTemplate>( | 279 | 293 | result.release(), argument_types_, attr.is_window_function)); | 280 | 293 | } else { | 281 | 84 | result.reset(new NullableT<false, result_is_nullable, | 282 | 84 | AggregateFunctionTemplate>( | 283 | 84 | result.release(), argument_types_, attr.is_window_function)); | 284 | 84 | } | 285 | 377 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6.49k | [&](auto result_is_nullable) { | 276 | 6.49k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.09k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.09k | AggregateFunctionTemplate>( | 279 | 6.09k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.09k | } else { | 281 | 391 | result.reset(new NullableT<false, result_is_nullable, | 282 | 391 | AggregateFunctionTemplate>( | 283 | 391 | result.release(), argument_types_, attr.is_window_function)); | 284 | 391 | } | 285 | 6.49k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.78k | [&](auto result_is_nullable) { | 276 | 1.78k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.69k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.69k | AggregateFunctionTemplate>( | 279 | 1.69k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.69k | } else { | 281 | 87 | result.reset(new NullableT<false, result_is_nullable, | 282 | 87 | AggregateFunctionTemplate>( | 283 | 87 | result.release(), argument_types_, attr.is_window_function)); | 284 | 87 | } | 285 | 1.78k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 203 | [&](auto result_is_nullable) { | 276 | 203 | if (attr.enable_aggregate_function_null_v2) { | 277 | 165 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 165 | AggregateFunctionTemplate>( | 279 | 165 | result.release(), argument_types_, attr.is_window_function)); | 280 | 165 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 203 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 236 | [&](auto result_is_nullable) { | 276 | 236 | if (attr.enable_aggregate_function_null_v2) { | 277 | 176 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 176 | AggregateFunctionTemplate>( | 279 | 176 | result.release(), argument_types_, attr.is_window_function)); | 280 | 176 | } else { | 281 | 60 | result.reset(new NullableT<false, result_is_nullable, | 282 | 60 | AggregateFunctionTemplate>( | 283 | 60 | result.release(), argument_types_, attr.is_window_function)); | 284 | 60 | } | 285 | 236 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 326 | [&](auto result_is_nullable) { | 276 | 326 | if (attr.enable_aggregate_function_null_v2) { | 277 | 288 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 288 | AggregateFunctionTemplate>( | 279 | 288 | result.release(), argument_types_, attr.is_window_function)); | 280 | 288 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 326 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 168 | [&](auto result_is_nullable) { | 276 | 168 | if (attr.enable_aggregate_function_null_v2) { | 277 | 150 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 150 | AggregateFunctionTemplate>( | 279 | 150 | result.release(), argument_types_, attr.is_window_function)); | 280 | 150 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 168 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.51k | [&](auto result_is_nullable) { | 276 | 1.51k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.49k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.49k | AggregateFunctionTemplate>( | 279 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.49k | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 1.51k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 492 | [&](auto result_is_nullable) { | 276 | 492 | if (attr.enable_aggregate_function_null_v2) { | 277 | 452 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 452 | AggregateFunctionTemplate>( | 279 | 452 | result.release(), argument_types_, attr.is_window_function)); | 280 | 452 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 492 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 52 | [&](auto result_is_nullable) { | 276 | 52 | if (attr.enable_aggregate_function_null_v2) { | 277 | 39 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 39 | AggregateFunctionTemplate>( | 279 | 39 | result.release(), argument_types_, attr.is_window_function)); | 280 | 39 | } else { | 281 | 13 | result.reset(new NullableT<false, result_is_nullable, | 282 | 13 | AggregateFunctionTemplate>( | 283 | 13 | result.release(), argument_types_, attr.is_window_function)); | 284 | 13 | } | 285 | 52 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 120 | [&](auto result_is_nullable) { | 276 | 120 | if (attr.enable_aggregate_function_null_v2) { | 277 | 120 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 120 | AggregateFunctionTemplate>( | 279 | 120 | result.release(), argument_types_, attr.is_window_function)); | 280 | 120 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 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 | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 10 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 369 | [&](auto result_is_nullable) { | 276 | 369 | if (attr.enable_aggregate_function_null_v2) { | 277 | 122 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 122 | AggregateFunctionTemplate>( | 279 | 122 | result.release(), argument_types_, attr.is_window_function)); | 280 | 247 | } else { | 281 | 247 | result.reset(new NullableT<false, result_is_nullable, | 282 | 247 | AggregateFunctionTemplate>( | 283 | 247 | result.release(), argument_types_, attr.is_window_function)); | 284 | 247 | } | 285 | 369 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 22 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 79 | [&](auto result_is_nullable) { | 276 | 79 | if (attr.enable_aggregate_function_null_v2) { | 277 | 75 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 75 | AggregateFunctionTemplate>( | 279 | 75 | result.release(), argument_types_, attr.is_window_function)); | 280 | 75 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 79 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 169 | [&](auto result_is_nullable) { | 276 | 169 | if (attr.enable_aggregate_function_null_v2) { | 277 | 168 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 168 | AggregateFunctionTemplate>( | 279 | 168 | result.release(), argument_types_, attr.is_window_function)); | 280 | 168 | } else { | 281 | 1 | result.reset(new NullableT<false, result_is_nullable, | 282 | 1 | AggregateFunctionTemplate>( | 283 | 1 | result.release(), argument_types_, attr.is_window_function)); | 284 | 1 | } | 285 | 169 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 7 | result.reset(new NullableT<false, result_is_nullable, | 282 | 7 | AggregateFunctionTemplate>( | 283 | 7 | result.release(), argument_types_, attr.is_window_function)); | 284 | 7 | } | 285 | 9 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 96 | [&](auto result_is_nullable) { | 276 | 96 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 72 | } else { | 281 | 72 | result.reset(new NullableT<false, result_is_nullable, | 282 | 72 | AggregateFunctionTemplate>( | 283 | 72 | result.release(), argument_types_, attr.is_window_function)); | 284 | 72 | } | 285 | 96 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 99 | [&](auto result_is_nullable) { | 276 | 99 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 75 | } else { | 281 | 75 | result.reset(new NullableT<false, result_is_nullable, | 282 | 75 | AggregateFunctionTemplate>( | 283 | 75 | result.release(), argument_types_, attr.is_window_function)); | 284 | 75 | } | 285 | 99 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 30 | [&](auto result_is_nullable) { | 276 | 30 | if (attr.enable_aggregate_function_null_v2) { | 277 | 30 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 30 | AggregateFunctionTemplate>( | 279 | 30 | result.release(), argument_types_, attr.is_window_function)); | 280 | 30 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 30 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 476 | [&](auto result_is_nullable) { | 276 | 476 | if (attr.enable_aggregate_function_null_v2) { | 277 | 140 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 140 | AggregateFunctionTemplate>( | 279 | 140 | result.release(), argument_types_, attr.is_window_function)); | 280 | 336 | } else { | 281 | 336 | result.reset(new NullableT<false, result_is_nullable, | 282 | 336 | AggregateFunctionTemplate>( | 283 | 336 | result.release(), argument_types_, attr.is_window_function)); | 284 | 336 | } | 285 | 476 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 354 | [&](auto result_is_nullable) { | 276 | 354 | if (attr.enable_aggregate_function_null_v2) { | 277 | 52 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 52 | AggregateFunctionTemplate>( | 279 | 52 | result.release(), argument_types_, attr.is_window_function)); | 280 | 302 | } else { | 281 | 302 | result.reset(new NullableT<false, result_is_nullable, | 282 | 302 | AggregateFunctionTemplate>( | 283 | 302 | result.release(), argument_types_, attr.is_window_function)); | 284 | 302 | } | 285 | 354 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 264 | [&](auto result_is_nullable) { | 276 | 264 | if (attr.enable_aggregate_function_null_v2) { | 277 | 195 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 195 | AggregateFunctionTemplate>( | 279 | 195 | result.release(), argument_types_, attr.is_window_function)); | 280 | 195 | } else { | 281 | 69 | result.reset(new NullableT<false, result_is_nullable, | 282 | 69 | AggregateFunctionTemplate>( | 283 | 69 | result.release(), argument_types_, attr.is_window_function)); | 284 | 69 | } | 285 | 264 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 3 | result.reset(new NullableT<false, result_is_nullable, | 282 | 3 | AggregateFunctionTemplate>( | 283 | 3 | result.release(), argument_types_, attr.is_window_function)); | 284 | 3 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 272 | [&](auto result_is_nullable) { | 276 | 272 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 246 | } else { | 281 | 246 | result.reset(new NullableT<false, result_is_nullable, | 282 | 246 | AggregateFunctionTemplate>( | 283 | 246 | result.release(), argument_types_, attr.is_window_function)); | 284 | 246 | } | 285 | 272 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 271 | [&](auto result_is_nullable) { | 276 | 271 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 245 | } else { | 281 | 245 | result.reset(new NullableT<false, result_is_nullable, | 282 | 245 | AggregateFunctionTemplate>( | 283 | 245 | result.release(), argument_types_, attr.is_window_function)); | 284 | 245 | } | 285 | 271 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 270 | [&](auto result_is_nullable) { | 276 | 270 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 244 | } else { | 281 | 244 | result.reset(new NullableT<false, result_is_nullable, | 282 | 244 | AggregateFunctionTemplate>( | 283 | 244 | result.release(), argument_types_, attr.is_window_function)); | 284 | 244 | } | 285 | 270 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 12 | [&](auto result_is_nullable) { | 276 | 12 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 12 | } else { | 281 | 12 | result.reset(new NullableT<false, result_is_nullable, | 282 | 12 | AggregateFunctionTemplate>( | 283 | 12 | result.release(), argument_types_, attr.is_window_function)); | 284 | 12 | } | 285 | 12 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 474 | [&](auto result_is_nullable) { | 276 | 474 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 474 | result.reset(new NullableT<false, result_is_nullable, | 282 | 474 | AggregateFunctionTemplate>( | 283 | 474 | result.release(), argument_types_, attr.is_window_function)); | 284 | 474 | } | 285 | 474 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 531 | [&](auto result_is_nullable) { | 276 | 531 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 531 | } else { | 281 | 531 | result.reset(new NullableT<false, result_is_nullable, | 282 | 531 | AggregateFunctionTemplate>( | 283 | 531 | result.release(), argument_types_, attr.is_window_function)); | 284 | 531 | } | 285 | 531 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 616 | [&](auto result_is_nullable) { | 276 | 616 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 616 | } else { | 281 | 616 | result.reset(new NullableT<false, result_is_nullable, | 282 | 616 | AggregateFunctionTemplate>( | 283 | 616 | result.release(), argument_types_, attr.is_window_function)); | 284 | 616 | } | 285 | 616 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 586 | [&](auto result_is_nullable) { | 276 | 586 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 586 | } else { | 281 | 586 | result.reset(new NullableT<false, result_is_nullable, | 282 | 586 | AggregateFunctionTemplate>( | 283 | 586 | result.release(), argument_types_, attr.is_window_function)); | 284 | 586 | } | 285 | 586 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 654 | [&](auto result_is_nullable) { | 276 | 654 | if (attr.enable_aggregate_function_null_v2) { | 277 | 124 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 124 | AggregateFunctionTemplate>( | 279 | 124 | result.release(), argument_types_, attr.is_window_function)); | 280 | 530 | } else { | 281 | 530 | result.reset(new NullableT<false, result_is_nullable, | 282 | 530 | AggregateFunctionTemplate>( | 283 | 530 | result.release(), argument_types_, attr.is_window_function)); | 284 | 530 | } | 285 | 654 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 693 | [&](auto result_is_nullable) { | 276 | 693 | if (attr.enable_aggregate_function_null_v2) { | 277 | 161 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 161 | AggregateFunctionTemplate>( | 279 | 161 | result.release(), argument_types_, attr.is_window_function)); | 280 | 532 | } else { | 281 | 532 | result.reset(new NullableT<false, result_is_nullable, | 282 | 532 | AggregateFunctionTemplate>( | 283 | 532 | result.release(), argument_types_, attr.is_window_function)); | 284 | 532 | } | 285 | 693 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 673 | [&](auto result_is_nullable) { | 276 | 673 | if (attr.enable_aggregate_function_null_v2) { | 277 | 140 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 140 | AggregateFunctionTemplate>( | 279 | 140 | result.release(), argument_types_, attr.is_window_function)); | 280 | 533 | } else { | 281 | 533 | result.reset(new NullableT<false, result_is_nullable, | 282 | 533 | AggregateFunctionTemplate>( | 283 | 533 | result.release(), argument_types_, attr.is_window_function)); | 284 | 533 | } | 285 | 673 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 367 | [&](auto result_is_nullable) { | 276 | 367 | if (attr.enable_aggregate_function_null_v2) { | 277 | 121 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 121 | AggregateFunctionTemplate>( | 279 | 121 | result.release(), argument_types_, attr.is_window_function)); | 280 | 246 | } else { | 281 | 246 | result.reset(new NullableT<false, result_is_nullable, | 282 | 246 | AggregateFunctionTemplate>( | 283 | 246 | result.release(), argument_types_, attr.is_window_function)); | 284 | 246 | } | 285 | 367 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSN_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSN_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 82 | [&](auto result_is_nullable) { | 276 | 82 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 78 | } else { | 281 | 78 | result.reset(new NullableT<false, result_is_nullable, | 282 | 78 | AggregateFunctionTemplate>( | 283 | 78 | result.release(), argument_types_, attr.is_window_function)); | 284 | 78 | } | 285 | 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 | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 50 | [&](auto result_is_nullable) { | 276 | 50 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 50 | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 50 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 46 | [&](auto result_is_nullable) { | 276 | 46 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 46 | } else { | 281 | 46 | result.reset(new NullableT<false, result_is_nullable, | 282 | 46 | AggregateFunctionTemplate>( | 283 | 46 | result.release(), argument_types_, attr.is_window_function)); | 284 | 46 | } | 285 | 46 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 42 | [&](auto result_is_nullable) { | 276 | 42 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 42 | } else { | 281 | 42 | result.reset(new NullableT<false, result_is_nullable, | 282 | 42 | AggregateFunctionTemplate>( | 283 | 42 | result.release(), argument_types_, attr.is_window_function)); | 284 | 42 | } | 285 | 42 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 48 | [&](auto result_is_nullable) { | 276 | 48 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 48 | } else { | 281 | 48 | result.reset(new NullableT<false, result_is_nullable, | 282 | 48 | AggregateFunctionTemplate>( | 283 | 48 | result.release(), argument_types_, attr.is_window_function)); | 284 | 48 | } | 285 | 48 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 40 | [&](auto result_is_nullable) { | 276 | 40 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 40 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 125 | [&](auto result_is_nullable) { | 276 | 125 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 125 | } else { | 281 | 125 | result.reset(new NullableT<false, result_is_nullable, | 282 | 125 | AggregateFunctionTemplate>( | 283 | 125 | result.release(), argument_types_, attr.is_window_function)); | 284 | 125 | } | 285 | 125 | }, |
|
286 | 64.2k | make_bool_variant(result_is_nullable)); |
287 | 64.2k | } |
288 | 112k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
289 | 112k | return AggregateFunctionPtr(result.release()); |
290 | 112k | } _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 894 | TArgs&&... args) { | 267 | 894 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 894 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 894 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 894 | if (have_nullable(argument_types_)) { | 274 | 893 | std::visit( | 275 | 893 | [&](auto result_is_nullable) { | 276 | 893 | if (attr.enable_aggregate_function_null_v2) { | 277 | 893 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 893 | AggregateFunctionTemplate>( | 279 | 893 | result.release(), argument_types_, attr.is_window_function)); | 280 | 893 | } else { | 281 | 893 | result.reset(new NullableT<false, result_is_nullable, | 282 | 893 | AggregateFunctionTemplate>( | 283 | 893 | result.release(), argument_types_, attr.is_window_function)); | 284 | 893 | } | 285 | 893 | }, | 286 | 893 | make_bool_variant(result_is_nullable)); | 287 | 893 | } | 288 | 894 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 894 | return AggregateFunctionPtr(result.release()); | 290 | 894 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 123 | TArgs&&... args) { | 267 | 123 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 123 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 123 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 123 | if (have_nullable(argument_types_)) { | 274 | 111 | std::visit( | 275 | 111 | [&](auto result_is_nullable) { | 276 | 111 | if (attr.enable_aggregate_function_null_v2) { | 277 | 111 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 111 | AggregateFunctionTemplate>( | 279 | 111 | result.release(), argument_types_, attr.is_window_function)); | 280 | 111 | } else { | 281 | 111 | result.reset(new NullableT<false, result_is_nullable, | 282 | 111 | AggregateFunctionTemplate>( | 283 | 111 | result.release(), argument_types_, attr.is_window_function)); | 284 | 111 | } | 285 | 111 | }, | 286 | 111 | make_bool_variant(result_is_nullable)); | 287 | 111 | } | 288 | 123 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 123 | return AggregateFunctionPtr(result.release()); | 290 | 123 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 30 | TArgs&&... args) { | 267 | 30 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 30 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 30 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 30 | if (have_nullable(argument_types_)) { | 274 | 26 | std::visit( | 275 | 26 | [&](auto result_is_nullable) { | 276 | 26 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 26 | } else { | 281 | 26 | result.reset(new NullableT<false, result_is_nullable, | 282 | 26 | AggregateFunctionTemplate>( | 283 | 26 | result.release(), argument_types_, attr.is_window_function)); | 284 | 26 | } | 285 | 26 | }, | 286 | 26 | make_bool_variant(result_is_nullable)); | 287 | 26 | } | 288 | 30 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 30 | return AggregateFunctionPtr(result.release()); | 290 | 30 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.24k | TArgs&&... args) { | 267 | 1.24k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.24k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.24k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.24k | if (have_nullable(argument_types_)) { | 274 | 703 | std::visit( | 275 | 703 | [&](auto result_is_nullable) { | 276 | 703 | if (attr.enable_aggregate_function_null_v2) { | 277 | 703 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 703 | AggregateFunctionTemplate>( | 279 | 703 | result.release(), argument_types_, attr.is_window_function)); | 280 | 703 | } else { | 281 | 703 | result.reset(new NullableT<false, result_is_nullable, | 282 | 703 | AggregateFunctionTemplate>( | 283 | 703 | result.release(), argument_types_, attr.is_window_function)); | 284 | 703 | } | 285 | 703 | }, | 286 | 703 | make_bool_variant(result_is_nullable)); | 287 | 703 | } | 288 | 1.24k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.24k | return AggregateFunctionPtr(result.release()); | 290 | 1.24k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 18 | TArgs&&... args) { | 267 | 18 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 18 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 18 | return AggregateFunctionPtr(result.release()); | 290 | 18 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.23k | TArgs&&... args) { | 267 | 2.23k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.23k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.23k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.23k | if (have_nullable(argument_types_)) { | 274 | 577 | std::visit( | 275 | 577 | [&](auto result_is_nullable) { | 276 | 577 | if (attr.enable_aggregate_function_null_v2) { | 277 | 577 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 577 | AggregateFunctionTemplate>( | 279 | 577 | result.release(), argument_types_, attr.is_window_function)); | 280 | 577 | } else { | 281 | 577 | result.reset(new NullableT<false, result_is_nullable, | 282 | 577 | AggregateFunctionTemplate>( | 283 | 577 | result.release(), argument_types_, attr.is_window_function)); | 284 | 577 | } | 285 | 577 | }, | 286 | 577 | make_bool_variant(result_is_nullable)); | 287 | 577 | } | 288 | 2.23k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.23k | return AggregateFunctionPtr(result.release()); | 290 | 2.23k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 9 | TArgs&&... args) { | 267 | 9 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 9 | if (have_nullable(argument_types_)) { | 274 | 9 | std::visit( | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 9 | result.reset(new NullableT<false, result_is_nullable, | 282 | 9 | AggregateFunctionTemplate>( | 283 | 9 | result.release(), argument_types_, attr.is_window_function)); | 284 | 9 | } | 285 | 9 | }, | 286 | 9 | make_bool_variant(result_is_nullable)); | 287 | 9 | } | 288 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 9 | return AggregateFunctionPtr(result.release()); | 290 | 9 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 158 | TArgs&&... args) { | 267 | 158 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 158 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 158 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 158 | if (have_nullable(argument_types_)) { | 274 | 143 | std::visit( | 275 | 143 | [&](auto result_is_nullable) { | 276 | 143 | if (attr.enable_aggregate_function_null_v2) { | 277 | 143 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 143 | AggregateFunctionTemplate>( | 279 | 143 | result.release(), argument_types_, attr.is_window_function)); | 280 | 143 | } else { | 281 | 143 | result.reset(new NullableT<false, result_is_nullable, | 282 | 143 | AggregateFunctionTemplate>( | 283 | 143 | result.release(), argument_types_, attr.is_window_function)); | 284 | 143 | } | 285 | 143 | }, | 286 | 143 | make_bool_variant(result_is_nullable)); | 287 | 143 | } | 288 | 158 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 158 | return AggregateFunctionPtr(result.release()); | 290 | 158 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.36k | TArgs&&... args) { | 267 | 3.36k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.36k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.36k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.36k | if (have_nullable(argument_types_)) { | 274 | 136 | std::visit( | 275 | 136 | [&](auto result_is_nullable) { | 276 | 136 | if (attr.enable_aggregate_function_null_v2) { | 277 | 136 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 136 | AggregateFunctionTemplate>( | 279 | 136 | result.release(), argument_types_, attr.is_window_function)); | 280 | 136 | } else { | 281 | 136 | result.reset(new NullableT<false, result_is_nullable, | 282 | 136 | AggregateFunctionTemplate>( | 283 | 136 | result.release(), argument_types_, attr.is_window_function)); | 284 | 136 | } | 285 | 136 | }, | 286 | 136 | make_bool_variant(result_is_nullable)); | 287 | 136 | } | 288 | 3.36k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.36k | return AggregateFunctionPtr(result.release()); | 290 | 3.36k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 77 | TArgs&&... args) { | 267 | 77 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 77 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 77 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 77 | if (have_nullable(argument_types_)) { | 274 | 62 | std::visit( | 275 | 62 | [&](auto result_is_nullable) { | 276 | 62 | if (attr.enable_aggregate_function_null_v2) { | 277 | 62 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 62 | AggregateFunctionTemplate>( | 279 | 62 | result.release(), argument_types_, attr.is_window_function)); | 280 | 62 | } else { | 281 | 62 | result.reset(new NullableT<false, result_is_nullable, | 282 | 62 | AggregateFunctionTemplate>( | 283 | 62 | result.release(), argument_types_, attr.is_window_function)); | 284 | 62 | } | 285 | 62 | }, | 286 | 62 | make_bool_variant(result_is_nullable)); | 287 | 62 | } | 288 | 77 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 77 | return AggregateFunctionPtr(result.release()); | 290 | 77 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 7.90k | TArgs&&... args) { | 267 | 7.90k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 7.90k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 7.90k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 7.90k | if (have_nullable(argument_types_)) { | 274 | 4.96k | std::visit( | 275 | 4.96k | [&](auto result_is_nullable) { | 276 | 4.96k | if (attr.enable_aggregate_function_null_v2) { | 277 | 4.96k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4.96k | AggregateFunctionTemplate>( | 279 | 4.96k | result.release(), argument_types_, attr.is_window_function)); | 280 | 4.96k | } else { | 281 | 4.96k | result.reset(new NullableT<false, result_is_nullable, | 282 | 4.96k | AggregateFunctionTemplate>( | 283 | 4.96k | result.release(), argument_types_, attr.is_window_function)); | 284 | 4.96k | } | 285 | 4.96k | }, | 286 | 4.96k | make_bool_variant(result_is_nullable)); | 287 | 4.96k | } | 288 | 7.90k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 7.90k | return AggregateFunctionPtr(result.release()); | 290 | 7.90k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6.35k | TArgs&&... args) { | 267 | 6.35k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6.35k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6.35k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6.35k | if (have_nullable(argument_types_)) { | 274 | 3.28k | std::visit( | 275 | 3.28k | [&](auto result_is_nullable) { | 276 | 3.28k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.28k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.28k | AggregateFunctionTemplate>( | 279 | 3.28k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.28k | } else { | 281 | 3.28k | result.reset(new NullableT<false, result_is_nullable, | 282 | 3.28k | AggregateFunctionTemplate>( | 283 | 3.28k | result.release(), argument_types_, attr.is_window_function)); | 284 | 3.28k | } | 285 | 3.28k | }, | 286 | 3.28k | make_bool_variant(result_is_nullable)); | 287 | 3.28k | } | 288 | 6.35k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6.35k | return AggregateFunctionPtr(result.release()); | 290 | 6.35k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.19k | TArgs&&... args) { | 267 | 1.19k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.19k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.19k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.19k | if (have_nullable(argument_types_)) { | 274 | 698 | std::visit( | 275 | 698 | [&](auto result_is_nullable) { | 276 | 698 | if (attr.enable_aggregate_function_null_v2) { | 277 | 698 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 698 | AggregateFunctionTemplate>( | 279 | 698 | result.release(), argument_types_, attr.is_window_function)); | 280 | 698 | } else { | 281 | 698 | result.reset(new NullableT<false, result_is_nullable, | 282 | 698 | AggregateFunctionTemplate>( | 283 | 698 | result.release(), argument_types_, attr.is_window_function)); | 284 | 698 | } | 285 | 698 | }, | 286 | 698 | make_bool_variant(result_is_nullable)); | 287 | 698 | } | 288 | 1.19k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.19k | return AggregateFunctionPtr(result.release()); | 290 | 1.19k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 64 | TArgs&&... args) { | 267 | 64 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 64 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 64 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 64 | if (have_nullable(argument_types_)) { | 274 | 64 | std::visit( | 275 | 64 | [&](auto result_is_nullable) { | 276 | 64 | if (attr.enable_aggregate_function_null_v2) { | 277 | 64 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 64 | AggregateFunctionTemplate>( | 279 | 64 | result.release(), argument_types_, attr.is_window_function)); | 280 | 64 | } else { | 281 | 64 | result.reset(new NullableT<false, result_is_nullable, | 282 | 64 | AggregateFunctionTemplate>( | 283 | 64 | result.release(), argument_types_, attr.is_window_function)); | 284 | 64 | } | 285 | 64 | }, | 286 | 64 | make_bool_variant(result_is_nullable)); | 287 | 64 | } | 288 | 64 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 64 | return AggregateFunctionPtr(result.release()); | 290 | 64 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.31k | TArgs&&... args) { | 267 | 2.31k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.31k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.31k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.31k | if (have_nullable(argument_types_)) { | 274 | 1.44k | std::visit( | 275 | 1.44k | [&](auto result_is_nullable) { | 276 | 1.44k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.44k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.44k | AggregateFunctionTemplate>( | 279 | 1.44k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.44k | } else { | 281 | 1.44k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.44k | AggregateFunctionTemplate>( | 283 | 1.44k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.44k | } | 285 | 1.44k | }, | 286 | 1.44k | make_bool_variant(result_is_nullable)); | 287 | 1.44k | } | 288 | 2.31k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.31k | return AggregateFunctionPtr(result.release()); | 290 | 2.31k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6.32k | TArgs&&... args) { | 267 | 6.32k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6.32k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6.32k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6.32k | if (have_nullable(argument_types_)) { | 274 | 3.95k | std::visit( | 275 | 3.95k | [&](auto result_is_nullable) { | 276 | 3.95k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.95k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.95k | AggregateFunctionTemplate>( | 279 | 3.95k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.95k | } else { | 281 | 3.95k | result.reset(new NullableT<false, result_is_nullable, | 282 | 3.95k | AggregateFunctionTemplate>( | 283 | 3.95k | result.release(), argument_types_, attr.is_window_function)); | 284 | 3.95k | } | 285 | 3.95k | }, | 286 | 3.95k | make_bool_variant(result_is_nullable)); | 287 | 3.95k | } | 288 | 6.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6.32k | return AggregateFunctionPtr(result.release()); | 290 | 6.32k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.95k | TArgs&&... args) { | 267 | 3.95k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.95k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.95k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.95k | if (have_nullable(argument_types_)) { | 274 | 1.61k | std::visit( | 275 | 1.61k | [&](auto result_is_nullable) { | 276 | 1.61k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.61k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.61k | AggregateFunctionTemplate>( | 279 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.61k | } else { | 281 | 1.61k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.61k | AggregateFunctionTemplate>( | 283 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.61k | } | 285 | 1.61k | }, | 286 | 1.61k | make_bool_variant(result_is_nullable)); | 287 | 1.61k | } | 288 | 3.95k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.95k | return AggregateFunctionPtr(result.release()); | 290 | 3.95k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.27k | TArgs&&... args) { | 267 | 1.27k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.27k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.27k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.27k | if (have_nullable(argument_types_)) { | 274 | 947 | std::visit( | 275 | 947 | [&](auto result_is_nullable) { | 276 | 947 | if (attr.enable_aggregate_function_null_v2) { | 277 | 947 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 947 | AggregateFunctionTemplate>( | 279 | 947 | result.release(), argument_types_, attr.is_window_function)); | 280 | 947 | } else { | 281 | 947 | result.reset(new NullableT<false, result_is_nullable, | 282 | 947 | AggregateFunctionTemplate>( | 283 | 947 | result.release(), argument_types_, attr.is_window_function)); | 284 | 947 | } | 285 | 947 | }, | 286 | 947 | make_bool_variant(result_is_nullable)); | 287 | 947 | } | 288 | 1.27k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.27k | return AggregateFunctionPtr(result.release()); | 290 | 1.27k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.50k | TArgs&&... args) { | 267 | 1.50k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.50k | if (have_nullable(argument_types_)) { | 274 | 1.50k | std::visit( | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.50k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.50k | AggregateFunctionTemplate>( | 279 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, | 286 | 1.50k | make_bool_variant(result_is_nullable)); | 287 | 1.50k | } | 288 | 1.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.50k | return AggregateFunctionPtr(result.release()); | 290 | 1.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 223 | TArgs&&... args) { | 267 | 223 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 223 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 223 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 223 | if (have_nullable(argument_types_)) { | 274 | 223 | std::visit( | 275 | 223 | [&](auto result_is_nullable) { | 276 | 223 | if (attr.enable_aggregate_function_null_v2) { | 277 | 223 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 223 | AggregateFunctionTemplate>( | 279 | 223 | result.release(), argument_types_, attr.is_window_function)); | 280 | 223 | } else { | 281 | 223 | result.reset(new NullableT<false, result_is_nullable, | 282 | 223 | AggregateFunctionTemplate>( | 283 | 223 | result.release(), argument_types_, attr.is_window_function)); | 284 | 223 | } | 285 | 223 | }, | 286 | 223 | make_bool_variant(result_is_nullable)); | 287 | 223 | } | 288 | 223 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 223 | return AggregateFunctionPtr(result.release()); | 290 | 223 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 893 | TArgs&&... args) { | 267 | 893 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 893 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 893 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 893 | if (have_nullable(argument_types_)) { | 274 | 603 | std::visit( | 275 | 603 | [&](auto result_is_nullable) { | 276 | 603 | if (attr.enable_aggregate_function_null_v2) { | 277 | 603 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 603 | AggregateFunctionTemplate>( | 279 | 603 | result.release(), argument_types_, attr.is_window_function)); | 280 | 603 | } else { | 281 | 603 | result.reset(new NullableT<false, result_is_nullable, | 282 | 603 | AggregateFunctionTemplate>( | 283 | 603 | result.release(), argument_types_, attr.is_window_function)); | 284 | 603 | } | 285 | 603 | }, | 286 | 603 | make_bool_variant(result_is_nullable)); | 287 | 603 | } | 288 | 893 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 893 | return AggregateFunctionPtr(result.release()); | 290 | 893 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 893 | TArgs&&... args) { | 267 | 893 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 893 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 893 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 893 | if (have_nullable(argument_types_)) { | 274 | 640 | std::visit( | 275 | 640 | [&](auto result_is_nullable) { | 276 | 640 | if (attr.enable_aggregate_function_null_v2) { | 277 | 640 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 640 | AggregateFunctionTemplate>( | 279 | 640 | result.release(), argument_types_, attr.is_window_function)); | 280 | 640 | } else { | 281 | 640 | result.reset(new NullableT<false, result_is_nullable, | 282 | 640 | AggregateFunctionTemplate>( | 283 | 640 | result.release(), argument_types_, attr.is_window_function)); | 284 | 640 | } | 285 | 640 | }, | 286 | 640 | make_bool_variant(result_is_nullable)); | 287 | 640 | } | 288 | 893 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 893 | return AggregateFunctionPtr(result.release()); | 290 | 893 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 12.2k | TArgs&&... args) { | 267 | 12.2k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 12.2k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 12.2k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 12.2k | if (have_nullable(argument_types_)) { | 274 | 7.55k | std::visit( | 275 | 7.55k | [&](auto result_is_nullable) { | 276 | 7.55k | if (attr.enable_aggregate_function_null_v2) { | 277 | 7.55k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7.55k | AggregateFunctionTemplate>( | 279 | 7.55k | result.release(), argument_types_, attr.is_window_function)); | 280 | 7.55k | } else { | 281 | 7.55k | result.reset(new NullableT<false, result_is_nullable, | 282 | 7.55k | AggregateFunctionTemplate>( | 283 | 7.55k | result.release(), argument_types_, attr.is_window_function)); | 284 | 7.55k | } | 285 | 7.55k | }, | 286 | 7.55k | make_bool_variant(result_is_nullable)); | 287 | 7.55k | } | 288 | 12.2k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 12.2k | return AggregateFunctionPtr(result.release()); | 290 | 12.2k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4.14k | TArgs&&... args) { | 267 | 4.14k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4.14k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4.14k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4.14k | if (have_nullable(argument_types_)) { | 274 | 2.33k | std::visit( | 275 | 2.33k | [&](auto result_is_nullable) { | 276 | 2.33k | if (attr.enable_aggregate_function_null_v2) { | 277 | 2.33k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2.33k | AggregateFunctionTemplate>( | 279 | 2.33k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.33k | } else { | 281 | 2.33k | result.reset(new NullableT<false, result_is_nullable, | 282 | 2.33k | AggregateFunctionTemplate>( | 283 | 2.33k | result.release(), argument_types_, attr.is_window_function)); | 284 | 2.33k | } | 285 | 2.33k | }, | 286 | 2.33k | make_bool_variant(result_is_nullable)); | 287 | 2.33k | } | 288 | 4.14k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4.14k | return AggregateFunctionPtr(result.release()); | 290 | 4.14k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 765 | TArgs&&... args) { | 267 | 765 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 765 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 765 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 765 | if (have_nullable(argument_types_)) { | 274 | 473 | std::visit( | 275 | 473 | [&](auto result_is_nullable) { | 276 | 473 | if (attr.enable_aggregate_function_null_v2) { | 277 | 473 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 473 | AggregateFunctionTemplate>( | 279 | 473 | result.release(), argument_types_, attr.is_window_function)); | 280 | 473 | } else { | 281 | 473 | result.reset(new NullableT<false, result_is_nullable, | 282 | 473 | AggregateFunctionTemplate>( | 283 | 473 | result.release(), argument_types_, attr.is_window_function)); | 284 | 473 | } | 285 | 473 | }, | 286 | 473 | make_bool_variant(result_is_nullable)); | 287 | 473 | } | 288 | 765 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 765 | return AggregateFunctionPtr(result.release()); | 290 | 765 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 582 | TArgs&&... args) { | 267 | 582 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 582 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 582 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 582 | if (have_nullable(argument_types_)) { | 274 | 444 | std::visit( | 275 | 444 | [&](auto result_is_nullable) { | 276 | 444 | if (attr.enable_aggregate_function_null_v2) { | 277 | 444 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 444 | AggregateFunctionTemplate>( | 279 | 444 | result.release(), argument_types_, attr.is_window_function)); | 280 | 444 | } else { | 281 | 444 | result.reset(new NullableT<false, result_is_nullable, | 282 | 444 | AggregateFunctionTemplate>( | 283 | 444 | result.release(), argument_types_, attr.is_window_function)); | 284 | 444 | } | 285 | 444 | }, | 286 | 444 | make_bool_variant(result_is_nullable)); | 287 | 444 | } | 288 | 582 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 582 | return AggregateFunctionPtr(result.release()); | 290 | 582 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.28k | TArgs&&... args) { | 267 | 1.28k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.28k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.28k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.28k | if (have_nullable(argument_types_)) { | 274 | 927 | std::visit( | 275 | 927 | [&](auto result_is_nullable) { | 276 | 927 | if (attr.enable_aggregate_function_null_v2) { | 277 | 927 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 927 | AggregateFunctionTemplate>( | 279 | 927 | result.release(), argument_types_, attr.is_window_function)); | 280 | 927 | } else { | 281 | 927 | result.reset(new NullableT<false, result_is_nullable, | 282 | 927 | AggregateFunctionTemplate>( | 283 | 927 | result.release(), argument_types_, attr.is_window_function)); | 284 | 927 | } | 285 | 927 | }, | 286 | 927 | make_bool_variant(result_is_nullable)); | 287 | 927 | } | 288 | 1.28k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.28k | return AggregateFunctionPtr(result.release()); | 290 | 1.28k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 242 | TArgs&&... args) { | 267 | 242 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 242 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 242 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 242 | if (have_nullable(argument_types_)) { | 274 | 242 | std::visit( | 275 | 242 | [&](auto result_is_nullable) { | 276 | 242 | if (attr.enable_aggregate_function_null_v2) { | 277 | 242 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 242 | AggregateFunctionTemplate>( | 279 | 242 | result.release(), argument_types_, attr.is_window_function)); | 280 | 242 | } else { | 281 | 242 | result.reset(new NullableT<false, result_is_nullable, | 282 | 242 | AggregateFunctionTemplate>( | 283 | 242 | result.release(), argument_types_, attr.is_window_function)); | 284 | 242 | } | 285 | 242 | }, | 286 | 242 | make_bool_variant(result_is_nullable)); | 287 | 242 | } | 288 | 242 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 242 | return AggregateFunctionPtr(result.release()); | 290 | 242 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.78k | TArgs&&... args) { | 267 | 2.78k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.78k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.78k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.78k | if (have_nullable(argument_types_)) { | 274 | 1.67k | std::visit( | 275 | 1.67k | [&](auto result_is_nullable) { | 276 | 1.67k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.67k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.67k | AggregateFunctionTemplate>( | 279 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.67k | } else { | 281 | 1.67k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.67k | AggregateFunctionTemplate>( | 283 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.67k | } | 285 | 1.67k | }, | 286 | 1.67k | make_bool_variant(result_is_nullable)); | 287 | 1.67k | } | 288 | 2.78k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.78k | return AggregateFunctionPtr(result.release()); | 290 | 2.78k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 690 | TArgs&&... args) { | 267 | 690 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 690 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 690 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 690 | if (have_nullable(argument_types_)) { | 274 | 570 | std::visit( | 275 | 570 | [&](auto result_is_nullable) { | 276 | 570 | if (attr.enable_aggregate_function_null_v2) { | 277 | 570 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 570 | AggregateFunctionTemplate>( | 279 | 570 | result.release(), argument_types_, attr.is_window_function)); | 280 | 570 | } else { | 281 | 570 | result.reset(new NullableT<false, result_is_nullable, | 282 | 570 | AggregateFunctionTemplate>( | 283 | 570 | result.release(), argument_types_, attr.is_window_function)); | 284 | 570 | } | 285 | 570 | }, | 286 | 570 | make_bool_variant(result_is_nullable)); | 287 | 570 | } | 288 | 690 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 690 | return AggregateFunctionPtr(result.release()); | 290 | 690 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 52 | TArgs&&... args) { | 267 | 52 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 52 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 52 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 52 | if (have_nullable(argument_types_)) { | 274 | 52 | std::visit( | 275 | 52 | [&](auto result_is_nullable) { | 276 | 52 | if (attr.enable_aggregate_function_null_v2) { | 277 | 52 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 52 | AggregateFunctionTemplate>( | 279 | 52 | result.release(), argument_types_, attr.is_window_function)); | 280 | 52 | } else { | 281 | 52 | result.reset(new NullableT<false, result_is_nullable, | 282 | 52 | AggregateFunctionTemplate>( | 283 | 52 | result.release(), argument_types_, attr.is_window_function)); | 284 | 52 | } | 285 | 52 | }, | 286 | 52 | make_bool_variant(result_is_nullable)); | 287 | 52 | } | 288 | 52 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 52 | return AggregateFunctionPtr(result.release()); | 290 | 52 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4 | TArgs&&... args) { | 267 | 4 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4 | if (have_nullable(argument_types_)) { | 274 | 4 | std::visit( | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 4 | }, | 286 | 4 | make_bool_variant(result_is_nullable)); | 287 | 4 | } | 288 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4 | return AggregateFunctionPtr(result.release()); | 290 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 5.29k | TArgs&&... args) { | 267 | 5.29k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 5.29k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 5.29k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 5.29k | if (have_nullable(argument_types_)) { | 274 | 3.10k | std::visit( | 275 | 3.10k | [&](auto result_is_nullable) { | 276 | 3.10k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.10k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.10k | AggregateFunctionTemplate>( | 279 | 3.10k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.10k | } else { | 281 | 3.10k | result.reset(new NullableT<false, result_is_nullable, | 282 | 3.10k | AggregateFunctionTemplate>( | 283 | 3.10k | result.release(), argument_types_, attr.is_window_function)); | 284 | 3.10k | } | 285 | 3.10k | }, | 286 | 3.10k | make_bool_variant(result_is_nullable)); | 287 | 3.10k | } | 288 | 5.29k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 5.29k | return AggregateFunctionPtr(result.release()); | 290 | 5.29k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.61k | TArgs&&... args) { | 267 | 3.61k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.61k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.61k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.61k | if (have_nullable(argument_types_)) { | 274 | 1.31k | std::visit( | 275 | 1.31k | [&](auto result_is_nullable) { | 276 | 1.31k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.31k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.31k | AggregateFunctionTemplate>( | 279 | 1.31k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.31k | } else { | 281 | 1.31k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.31k | AggregateFunctionTemplate>( | 283 | 1.31k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.31k | } | 285 | 1.31k | }, | 286 | 1.31k | make_bool_variant(result_is_nullable)); | 287 | 1.31k | } | 288 | 3.61k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.61k | return AggregateFunctionPtr(result.release()); | 290 | 3.61k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 885 | TArgs&&... args) { | 267 | 885 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 885 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 885 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 885 | if (have_nullable(argument_types_)) { | 274 | 629 | std::visit( | 275 | 629 | [&](auto result_is_nullable) { | 276 | 629 | if (attr.enable_aggregate_function_null_v2) { | 277 | 629 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 629 | AggregateFunctionTemplate>( | 279 | 629 | result.release(), argument_types_, attr.is_window_function)); | 280 | 629 | } else { | 281 | 629 | result.reset(new NullableT<false, result_is_nullable, | 282 | 629 | AggregateFunctionTemplate>( | 283 | 629 | result.release(), argument_types_, attr.is_window_function)); | 284 | 629 | } | 285 | 629 | }, | 286 | 629 | make_bool_variant(result_is_nullable)); | 287 | 629 | } | 288 | 885 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 885 | return AggregateFunctionPtr(result.release()); | 290 | 885 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.50k | TArgs&&... args) { | 267 | 1.50k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.50k | if (have_nullable(argument_types_)) { | 274 | 1.50k | std::visit( | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.50k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.50k | AggregateFunctionTemplate>( | 279 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, | 286 | 1.50k | make_bool_variant(result_is_nullable)); | 287 | 1.50k | } | 288 | 1.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.50k | return AggregateFunctionPtr(result.release()); | 290 | 1.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 145 | TArgs&&... args) { | 267 | 145 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 145 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 145 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 145 | if (have_nullable(argument_types_)) { | 274 | 145 | std::visit( | 275 | 145 | [&](auto result_is_nullable) { | 276 | 145 | if (attr.enable_aggregate_function_null_v2) { | 277 | 145 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 145 | AggregateFunctionTemplate>( | 279 | 145 | result.release(), argument_types_, attr.is_window_function)); | 280 | 145 | } else { | 281 | 145 | result.reset(new NullableT<false, result_is_nullable, | 282 | 145 | AggregateFunctionTemplate>( | 283 | 145 | result.release(), argument_types_, attr.is_window_function)); | 284 | 145 | } | 285 | 145 | }, | 286 | 145 | make_bool_variant(result_is_nullable)); | 287 | 145 | } | 288 | 145 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 145 | return AggregateFunctionPtr(result.release()); | 290 | 145 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 483 | TArgs&&... args) { | 267 | 483 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 483 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 483 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 483 | if (have_nullable(argument_types_)) { | 274 | 365 | std::visit( | 275 | 365 | [&](auto result_is_nullable) { | 276 | 365 | if (attr.enable_aggregate_function_null_v2) { | 277 | 365 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 365 | AggregateFunctionTemplate>( | 279 | 365 | result.release(), argument_types_, attr.is_window_function)); | 280 | 365 | } else { | 281 | 365 | result.reset(new NullableT<false, result_is_nullable, | 282 | 365 | AggregateFunctionTemplate>( | 283 | 365 | result.release(), argument_types_, attr.is_window_function)); | 284 | 365 | } | 285 | 365 | }, | 286 | 365 | make_bool_variant(result_is_nullable)); | 287 | 365 | } | 288 | 483 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 483 | return AggregateFunctionPtr(result.release()); | 290 | 483 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 488 | TArgs&&... args) { | 267 | 488 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 488 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 488 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 488 | if (have_nullable(argument_types_)) { | 274 | 377 | std::visit( | 275 | 377 | [&](auto result_is_nullable) { | 276 | 377 | if (attr.enable_aggregate_function_null_v2) { | 277 | 377 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 377 | AggregateFunctionTemplate>( | 279 | 377 | result.release(), argument_types_, attr.is_window_function)); | 280 | 377 | } else { | 281 | 377 | result.reset(new NullableT<false, result_is_nullable, | 282 | 377 | AggregateFunctionTemplate>( | 283 | 377 | result.release(), argument_types_, attr.is_window_function)); | 284 | 377 | } | 285 | 377 | }, | 286 | 377 | make_bool_variant(result_is_nullable)); | 287 | 377 | } | 288 | 488 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 488 | return AggregateFunctionPtr(result.release()); | 290 | 488 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10.2k | TArgs&&... args) { | 267 | 10.2k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10.2k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10.2k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10.2k | if (have_nullable(argument_types_)) { | 274 | 6.48k | std::visit( | 275 | 6.48k | [&](auto result_is_nullable) { | 276 | 6.48k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.48k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.48k | AggregateFunctionTemplate>( | 279 | 6.48k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.48k | } else { | 281 | 6.48k | result.reset(new NullableT<false, result_is_nullable, | 282 | 6.48k | AggregateFunctionTemplate>( | 283 | 6.48k | result.release(), argument_types_, attr.is_window_function)); | 284 | 6.48k | } | 285 | 6.48k | }, | 286 | 6.48k | make_bool_variant(result_is_nullable)); | 287 | 6.48k | } | 288 | 10.2k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10.2k | return AggregateFunctionPtr(result.release()); | 290 | 10.2k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.37k | TArgs&&... args) { | 267 | 3.37k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.37k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.37k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.37k | if (have_nullable(argument_types_)) { | 274 | 1.78k | std::visit( | 275 | 1.78k | [&](auto result_is_nullable) { | 276 | 1.78k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.78k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.78k | AggregateFunctionTemplate>( | 279 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.78k | } else { | 281 | 1.78k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.78k | AggregateFunctionTemplate>( | 283 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.78k | } | 285 | 1.78k | }, | 286 | 1.78k | make_bool_variant(result_is_nullable)); | 287 | 1.78k | } | 288 | 3.37k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.37k | return AggregateFunctionPtr(result.release()); | 290 | 3.37k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 348 | TArgs&&... args) { | 267 | 348 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 348 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 348 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 348 | if (have_nullable(argument_types_)) { | 274 | 203 | std::visit( | 275 | 203 | [&](auto result_is_nullable) { | 276 | 203 | if (attr.enable_aggregate_function_null_v2) { | 277 | 203 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 203 | AggregateFunctionTemplate>( | 279 | 203 | result.release(), argument_types_, attr.is_window_function)); | 280 | 203 | } else { | 281 | 203 | result.reset(new NullableT<false, result_is_nullable, | 282 | 203 | AggregateFunctionTemplate>( | 283 | 203 | result.release(), argument_types_, attr.is_window_function)); | 284 | 203 | } | 285 | 203 | }, | 286 | 203 | make_bool_variant(result_is_nullable)); | 287 | 203 | } | 288 | 348 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 348 | return AggregateFunctionPtr(result.release()); | 290 | 348 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 236 | TArgs&&... args) { | 267 | 236 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 236 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 236 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 236 | if (have_nullable(argument_types_)) { | 274 | 236 | std::visit( | 275 | 236 | [&](auto result_is_nullable) { | 276 | 236 | if (attr.enable_aggregate_function_null_v2) { | 277 | 236 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 236 | AggregateFunctionTemplate>( | 279 | 236 | result.release(), argument_types_, attr.is_window_function)); | 280 | 236 | } else { | 281 | 236 | result.reset(new NullableT<false, result_is_nullable, | 282 | 236 | AggregateFunctionTemplate>( | 283 | 236 | result.release(), argument_types_, attr.is_window_function)); | 284 | 236 | } | 285 | 236 | }, | 286 | 236 | make_bool_variant(result_is_nullable)); | 287 | 236 | } | 288 | 236 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 236 | return AggregateFunctionPtr(result.release()); | 290 | 236 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 332 | TArgs&&... args) { | 267 | 332 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 332 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 332 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 332 | if (have_nullable(argument_types_)) { | 274 | 326 | std::visit( | 275 | 326 | [&](auto result_is_nullable) { | 276 | 326 | if (attr.enable_aggregate_function_null_v2) { | 277 | 326 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 326 | AggregateFunctionTemplate>( | 279 | 326 | result.release(), argument_types_, attr.is_window_function)); | 280 | 326 | } else { | 281 | 326 | result.reset(new NullableT<false, result_is_nullable, | 282 | 326 | AggregateFunctionTemplate>( | 283 | 326 | result.release(), argument_types_, attr.is_window_function)); | 284 | 326 | } | 285 | 326 | }, | 286 | 326 | make_bool_variant(result_is_nullable)); | 287 | 326 | } | 288 | 332 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 332 | return AggregateFunctionPtr(result.release()); | 290 | 332 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 170 | TArgs&&... args) { | 267 | 170 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 170 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 170 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 170 | if (have_nullable(argument_types_)) { | 274 | 168 | std::visit( | 275 | 168 | [&](auto result_is_nullable) { | 276 | 168 | if (attr.enable_aggregate_function_null_v2) { | 277 | 168 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 168 | AggregateFunctionTemplate>( | 279 | 168 | result.release(), argument_types_, attr.is_window_function)); | 280 | 168 | } else { | 281 | 168 | result.reset(new NullableT<false, result_is_nullable, | 282 | 168 | AggregateFunctionTemplate>( | 283 | 168 | result.release(), argument_types_, attr.is_window_function)); | 284 | 168 | } | 285 | 168 | }, | 286 | 168 | make_bool_variant(result_is_nullable)); | 287 | 168 | } | 288 | 170 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 170 | return AggregateFunctionPtr(result.release()); | 290 | 170 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.50k | TArgs&&... args) { | 267 | 2.50k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.50k | if (have_nullable(argument_types_)) { | 274 | 1.51k | std::visit( | 275 | 1.51k | [&](auto result_is_nullable) { | 276 | 1.51k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.51k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.51k | AggregateFunctionTemplate>( | 279 | 1.51k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.51k | } else { | 281 | 1.51k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.51k | AggregateFunctionTemplate>( | 283 | 1.51k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.51k | } | 285 | 1.51k | }, | 286 | 1.51k | make_bool_variant(result_is_nullable)); | 287 | 1.51k | } | 288 | 2.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.50k | return AggregateFunctionPtr(result.release()); | 290 | 2.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 608 | TArgs&&... args) { | 267 | 608 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 608 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 608 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 608 | if (have_nullable(argument_types_)) { | 274 | 492 | std::visit( | 275 | 492 | [&](auto result_is_nullable) { | 276 | 492 | if (attr.enable_aggregate_function_null_v2) { | 277 | 492 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 492 | AggregateFunctionTemplate>( | 279 | 492 | result.release(), argument_types_, attr.is_window_function)); | 280 | 492 | } else { | 281 | 492 | result.reset(new NullableT<false, result_is_nullable, | 282 | 492 | AggregateFunctionTemplate>( | 283 | 492 | result.release(), argument_types_, attr.is_window_function)); | 284 | 492 | } | 285 | 492 | }, | 286 | 492 | make_bool_variant(result_is_nullable)); | 287 | 492 | } | 288 | 608 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 608 | return AggregateFunctionPtr(result.release()); | 290 | 608 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 52 | TArgs&&... args) { | 267 | 52 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 52 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 52 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 52 | if (have_nullable(argument_types_)) { | 274 | 52 | std::visit( | 275 | 52 | [&](auto result_is_nullable) { | 276 | 52 | if (attr.enable_aggregate_function_null_v2) { | 277 | 52 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 52 | AggregateFunctionTemplate>( | 279 | 52 | result.release(), argument_types_, attr.is_window_function)); | 280 | 52 | } else { | 281 | 52 | result.reset(new NullableT<false, result_is_nullable, | 282 | 52 | AggregateFunctionTemplate>( | 283 | 52 | result.release(), argument_types_, attr.is_window_function)); | 284 | 52 | } | 285 | 52 | }, | 286 | 52 | make_bool_variant(result_is_nullable)); | 287 | 52 | } | 288 | 52 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 52 | return AggregateFunctionPtr(result.release()); | 290 | 52 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4 | TArgs&&... args) { | 267 | 4 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4 | if (have_nullable(argument_types_)) { | 274 | 4 | std::visit( | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 4 | }, | 286 | 4 | make_bool_variant(result_is_nullable)); | 287 | 4 | } | 288 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4 | return AggregateFunctionPtr(result.release()); | 290 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 153 | TArgs&&... args) { | 267 | 153 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 153 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 153 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 153 | if (have_nullable(argument_types_)) { | 274 | 120 | std::visit( | 275 | 120 | [&](auto result_is_nullable) { | 276 | 120 | if (attr.enable_aggregate_function_null_v2) { | 277 | 120 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 120 | AggregateFunctionTemplate>( | 279 | 120 | result.release(), argument_types_, attr.is_window_function)); | 280 | 120 | } else { | 281 | 120 | result.reset(new NullableT<false, result_is_nullable, | 282 | 120 | AggregateFunctionTemplate>( | 283 | 120 | result.release(), argument_types_, attr.is_window_function)); | 284 | 120 | } | 285 | 120 | }, | 286 | 120 | make_bool_variant(result_is_nullable)); | 287 | 120 | } | 288 | 153 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 153 | return AggregateFunctionPtr(result.release()); | 290 | 153 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10 | TArgs&&... args) { | 267 | 10 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10 | if (have_nullable(argument_types_)) { | 274 | 10 | std::visit( | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 10 | result.reset(new NullableT<false, result_is_nullable, | 282 | 10 | AggregateFunctionTemplate>( | 283 | 10 | result.release(), argument_types_, attr.is_window_function)); | 284 | 10 | } | 285 | 10 | }, | 286 | 10 | make_bool_variant(result_is_nullable)); | 287 | 10 | } | 288 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10 | return AggregateFunctionPtr(result.release()); | 290 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 12 | TArgs&&... args) { | 267 | 12 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 12 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 12 | return AggregateFunctionPtr(result.release()); | 290 | 12 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6 | TArgs&&... args) { | 267 | 6 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6 | return AggregateFunctionPtr(result.release()); | 290 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 416 | TArgs&&... args) { | 267 | 416 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 416 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 416 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 416 | if (have_nullable(argument_types_)) { | 274 | 369 | std::visit( | 275 | 369 | [&](auto result_is_nullable) { | 276 | 369 | if (attr.enable_aggregate_function_null_v2) { | 277 | 369 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 369 | AggregateFunctionTemplate>( | 279 | 369 | result.release(), argument_types_, attr.is_window_function)); | 280 | 369 | } else { | 281 | 369 | result.reset(new NullableT<false, result_is_nullable, | 282 | 369 | AggregateFunctionTemplate>( | 283 | 369 | result.release(), argument_types_, attr.is_window_function)); | 284 | 369 | } | 285 | 369 | }, | 286 | 369 | make_bool_variant(result_is_nullable)); | 287 | 369 | } | 288 | 416 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 416 | return AggregateFunctionPtr(result.release()); | 290 | 416 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 44 | TArgs&&... args) { | 267 | 44 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 44 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 44 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 44 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 44 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 44 | return AggregateFunctionPtr(result.release()); | 290 | 44 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6 | TArgs&&... args) { | 267 | 6 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6 | return AggregateFunctionPtr(result.release()); | 290 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 5 | TArgs&&... args) { | 267 | 5 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 5 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 5 | return AggregateFunctionPtr(result.release()); | 290 | 5 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 58 | TArgs&&... args) { | 267 | 58 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 58 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 58 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 58 | if (have_nullable(argument_types_)) { | 274 | 22 | std::visit( | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, | 286 | 22 | make_bool_variant(result_is_nullable)); | 287 | 22 | } | 288 | 58 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 58 | return AggregateFunctionPtr(result.release()); | 290 | 58 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 89 | TArgs&&... args) { | 267 | 89 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 89 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 89 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 89 | if (have_nullable(argument_types_)) { | 274 | 79 | std::visit( | 275 | 79 | [&](auto result_is_nullable) { | 276 | 79 | if (attr.enable_aggregate_function_null_v2) { | 277 | 79 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 79 | AggregateFunctionTemplate>( | 279 | 79 | result.release(), argument_types_, attr.is_window_function)); | 280 | 79 | } else { | 281 | 79 | result.reset(new NullableT<false, result_is_nullable, | 282 | 79 | AggregateFunctionTemplate>( | 283 | 79 | result.release(), argument_types_, attr.is_window_function)); | 284 | 79 | } | 285 | 79 | }, | 286 | 79 | make_bool_variant(result_is_nullable)); | 287 | 79 | } | 288 | 89 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 89 | return AggregateFunctionPtr(result.release()); | 290 | 89 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 629 | TArgs&&... args) { | 267 | 629 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 629 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 629 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 629 | if (have_nullable(argument_types_)) { | 274 | 169 | std::visit( | 275 | 169 | [&](auto result_is_nullable) { | 276 | 169 | if (attr.enable_aggregate_function_null_v2) { | 277 | 169 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 169 | AggregateFunctionTemplate>( | 279 | 169 | result.release(), argument_types_, attr.is_window_function)); | 280 | 169 | } else { | 281 | 169 | result.reset(new NullableT<false, result_is_nullable, | 282 | 169 | AggregateFunctionTemplate>( | 283 | 169 | result.release(), argument_types_, attr.is_window_function)); | 284 | 169 | } | 285 | 169 | }, | 286 | 169 | make_bool_variant(result_is_nullable)); | 287 | 169 | } | 288 | 629 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 629 | return AggregateFunctionPtr(result.release()); | 290 | 629 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 9 | TArgs&&... args) { | 267 | 9 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 9 | if (have_nullable(argument_types_)) { | 274 | 9 | std::visit( | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 9 | result.reset(new NullableT<false, result_is_nullable, | 282 | 9 | AggregateFunctionTemplate>( | 283 | 9 | result.release(), argument_types_, attr.is_window_function)); | 284 | 9 | } | 285 | 9 | }, | 286 | 9 | make_bool_variant(result_is_nullable)); | 287 | 9 | } | 288 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 9 | return AggregateFunctionPtr(result.release()); | 290 | 9 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 96 | TArgs&&... args) { | 267 | 96 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 96 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 96 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 96 | if (have_nullable(argument_types_)) { | 274 | 96 | std::visit( | 275 | 96 | [&](auto result_is_nullable) { | 276 | 96 | if (attr.enable_aggregate_function_null_v2) { | 277 | 96 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 96 | AggregateFunctionTemplate>( | 279 | 96 | result.release(), argument_types_, attr.is_window_function)); | 280 | 96 | } else { | 281 | 96 | result.reset(new NullableT<false, result_is_nullable, | 282 | 96 | AggregateFunctionTemplate>( | 283 | 96 | result.release(), argument_types_, attr.is_window_function)); | 284 | 96 | } | 285 | 96 | }, | 286 | 96 | make_bool_variant(result_is_nullable)); | 287 | 96 | } | 288 | 96 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 96 | return AggregateFunctionPtr(result.release()); | 290 | 96 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 24 | std::visit( | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, | 286 | 24 | make_bool_variant(result_is_nullable)); | 287 | 24 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 99 | TArgs&&... args) { | 267 | 99 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 99 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 99 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 99 | if (have_nullable(argument_types_)) { | 274 | 99 | std::visit( | 275 | 99 | [&](auto result_is_nullable) { | 276 | 99 | if (attr.enable_aggregate_function_null_v2) { | 277 | 99 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 99 | AggregateFunctionTemplate>( | 279 | 99 | result.release(), argument_types_, attr.is_window_function)); | 280 | 99 | } else { | 281 | 99 | result.reset(new NullableT<false, result_is_nullable, | 282 | 99 | AggregateFunctionTemplate>( | 283 | 99 | result.release(), argument_types_, attr.is_window_function)); | 284 | 99 | } | 285 | 99 | }, | 286 | 99 | make_bool_variant(result_is_nullable)); | 287 | 99 | } | 288 | 99 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 99 | return AggregateFunctionPtr(result.release()); | 290 | 99 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 83 | TArgs&&... args) { | 267 | 83 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 83 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 83 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 83 | if (have_nullable(argument_types_)) { | 274 | 30 | std::visit( | 275 | 30 | [&](auto result_is_nullable) { | 276 | 30 | if (attr.enable_aggregate_function_null_v2) { | 277 | 30 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 30 | AggregateFunctionTemplate>( | 279 | 30 | result.release(), argument_types_, attr.is_window_function)); | 280 | 30 | } else { | 281 | 30 | result.reset(new NullableT<false, result_is_nullable, | 282 | 30 | AggregateFunctionTemplate>( | 283 | 30 | result.release(), argument_types_, attr.is_window_function)); | 284 | 30 | } | 285 | 30 | }, | 286 | 30 | make_bool_variant(result_is_nullable)); | 287 | 30 | } | 288 | 83 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 83 | return AggregateFunctionPtr(result.release()); | 290 | 83 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 29 | TArgs&&... args) { | 267 | 29 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 29 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 29 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 29 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 29 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 29 | return AggregateFunctionPtr(result.release()); | 290 | 29 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.24k | TArgs&&... args) { | 267 | 1.24k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.24k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.24k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.24k | if (have_nullable(argument_types_)) { | 274 | 474 | std::visit( | 275 | 474 | [&](auto result_is_nullable) { | 276 | 474 | if (attr.enable_aggregate_function_null_v2) { | 277 | 474 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 474 | AggregateFunctionTemplate>( | 279 | 474 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 474 | result.reset(new NullableT<false, result_is_nullable, | 282 | 474 | AggregateFunctionTemplate>( | 283 | 474 | result.release(), argument_types_, attr.is_window_function)); | 284 | 474 | } | 285 | 474 | }, | 286 | 474 | make_bool_variant(result_is_nullable)); | 287 | 474 | } | 288 | 1.24k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.24k | return AggregateFunctionPtr(result.release()); | 290 | 1.24k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 400 | TArgs&&... args) { | 267 | 400 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 400 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 400 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 400 | if (have_nullable(argument_types_)) { | 274 | 352 | std::visit( | 275 | 352 | [&](auto result_is_nullable) { | 276 | 352 | if (attr.enable_aggregate_function_null_v2) { | 277 | 352 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 352 | AggregateFunctionTemplate>( | 279 | 352 | result.release(), argument_types_, attr.is_window_function)); | 280 | 352 | } else { | 281 | 352 | result.reset(new NullableT<false, result_is_nullable, | 282 | 352 | AggregateFunctionTemplate>( | 283 | 352 | result.release(), argument_types_, attr.is_window_function)); | 284 | 352 | } | 285 | 352 | }, | 286 | 352 | make_bool_variant(result_is_nullable)); | 287 | 352 | } | 288 | 400 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 400 | return AggregateFunctionPtr(result.release()); | 290 | 400 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 276 | TArgs&&... args) { | 267 | 276 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 276 | if (have_nullable(argument_types_)) { | 274 | 264 | std::visit( | 275 | 264 | [&](auto result_is_nullable) { | 276 | 264 | if (attr.enable_aggregate_function_null_v2) { | 277 | 264 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 264 | AggregateFunctionTemplate>( | 279 | 264 | result.release(), argument_types_, attr.is_window_function)); | 280 | 264 | } else { | 281 | 264 | result.reset(new NullableT<false, result_is_nullable, | 282 | 264 | AggregateFunctionTemplate>( | 283 | 264 | result.release(), argument_types_, attr.is_window_function)); | 284 | 264 | } | 285 | 264 | }, | 286 | 264 | make_bool_variant(result_is_nullable)); | 287 | 264 | } | 288 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 276 | return AggregateFunctionPtr(result.release()); | 290 | 276 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 29 | TArgs&&... args) { | 267 | 29 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 29 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 29 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 29 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 29 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 29 | return AggregateFunctionPtr(result.release()); | 290 | 29 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 286 | TArgs&&... args) { | 267 | 286 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 286 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 286 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 286 | if (have_nullable(argument_types_)) { | 274 | 272 | std::visit( | 275 | 272 | [&](auto result_is_nullable) { | 276 | 272 | if (attr.enable_aggregate_function_null_v2) { | 277 | 272 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 272 | AggregateFunctionTemplate>( | 279 | 272 | result.release(), argument_types_, attr.is_window_function)); | 280 | 272 | } else { | 281 | 272 | result.reset(new NullableT<false, result_is_nullable, | 282 | 272 | AggregateFunctionTemplate>( | 283 | 272 | result.release(), argument_types_, attr.is_window_function)); | 284 | 272 | } | 285 | 272 | }, | 286 | 272 | make_bool_variant(result_is_nullable)); | 287 | 272 | } | 288 | 286 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 286 | return AggregateFunctionPtr(result.release()); | 290 | 286 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 285 | TArgs&&... args) { | 267 | 285 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 285 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 285 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 285 | if (have_nullable(argument_types_)) { | 274 | 271 | std::visit( | 275 | 271 | [&](auto result_is_nullable) { | 276 | 271 | if (attr.enable_aggregate_function_null_v2) { | 277 | 271 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 271 | AggregateFunctionTemplate>( | 279 | 271 | result.release(), argument_types_, attr.is_window_function)); | 280 | 271 | } else { | 281 | 271 | result.reset(new NullableT<false, result_is_nullable, | 282 | 271 | AggregateFunctionTemplate>( | 283 | 271 | result.release(), argument_types_, attr.is_window_function)); | 284 | 271 | } | 285 | 271 | }, | 286 | 271 | make_bool_variant(result_is_nullable)); | 287 | 271 | } | 288 | 285 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 285 | return AggregateFunctionPtr(result.release()); | 290 | 285 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 284 | TArgs&&... args) { | 267 | 284 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 284 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 284 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 284 | if (have_nullable(argument_types_)) { | 274 | 272 | std::visit( | 275 | 272 | [&](auto result_is_nullable) { | 276 | 272 | if (attr.enable_aggregate_function_null_v2) { | 277 | 272 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 272 | AggregateFunctionTemplate>( | 279 | 272 | result.release(), argument_types_, attr.is_window_function)); | 280 | 272 | } else { | 281 | 272 | result.reset(new NullableT<false, result_is_nullable, | 282 | 272 | AggregateFunctionTemplate>( | 283 | 272 | result.release(), argument_types_, attr.is_window_function)); | 284 | 272 | } | 285 | 272 | }, | 286 | 272 | make_bool_variant(result_is_nullable)); | 287 | 272 | } | 288 | 284 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 284 | return AggregateFunctionPtr(result.release()); | 290 | 284 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.58k | TArgs&&... args) { | 267 | 2.58k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.58k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.58k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.58k | if (have_nullable(argument_types_)) { | 274 | 17 | std::visit( | 275 | 17 | [&](auto result_is_nullable) { | 276 | 17 | if (attr.enable_aggregate_function_null_v2) { | 277 | 17 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 17 | AggregateFunctionTemplate>( | 279 | 17 | result.release(), argument_types_, attr.is_window_function)); | 280 | 17 | } else { | 281 | 17 | result.reset(new NullableT<false, result_is_nullable, | 282 | 17 | AggregateFunctionTemplate>( | 283 | 17 | result.release(), argument_types_, attr.is_window_function)); | 284 | 17 | } | 285 | 17 | }, | 286 | 17 | make_bool_variant(result_is_nullable)); | 287 | 17 | } | 288 | 2.58k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.58k | return AggregateFunctionPtr(result.release()); | 290 | 2.58k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.10k | TArgs&&... args) { | 267 | 1.10k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.10k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.10k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.10k | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 1.10k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.10k | return AggregateFunctionPtr(result.release()); | 290 | 1.10k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 279 | TArgs&&... args) { | 267 | 279 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 279 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 279 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 279 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 279 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 279 | return AggregateFunctionPtr(result.release()); | 290 | 279 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 921 | TArgs&&... args) { | 267 | 921 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 921 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 921 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 921 | if (have_nullable(argument_types_)) { | 274 | 474 | std::visit( | 275 | 474 | [&](auto result_is_nullable) { | 276 | 474 | if (attr.enable_aggregate_function_null_v2) { | 277 | 474 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 474 | AggregateFunctionTemplate>( | 279 | 474 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 474 | result.reset(new NullableT<false, result_is_nullable, | 282 | 474 | AggregateFunctionTemplate>( | 283 | 474 | result.release(), argument_types_, attr.is_window_function)); | 284 | 474 | } | 285 | 474 | }, | 286 | 474 | make_bool_variant(result_is_nullable)); | 287 | 474 | } | 288 | 921 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 921 | return AggregateFunctionPtr(result.release()); | 290 | 921 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 980 | TArgs&&... args) { | 267 | 980 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 980 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 980 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 980 | if (have_nullable(argument_types_)) { | 274 | 531 | std::visit( | 275 | 531 | [&](auto result_is_nullable) { | 276 | 531 | if (attr.enable_aggregate_function_null_v2) { | 277 | 531 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 531 | AggregateFunctionTemplate>( | 279 | 531 | result.release(), argument_types_, attr.is_window_function)); | 280 | 531 | } else { | 281 | 531 | result.reset(new NullableT<false, result_is_nullable, | 282 | 531 | AggregateFunctionTemplate>( | 283 | 531 | result.release(), argument_types_, attr.is_window_function)); | 284 | 531 | } | 285 | 531 | }, | 286 | 531 | make_bool_variant(result_is_nullable)); | 287 | 531 | } | 288 | 980 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 980 | return AggregateFunctionPtr(result.release()); | 290 | 980 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.20k | TArgs&&... args) { | 267 | 1.20k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.20k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.20k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.20k | if (have_nullable(argument_types_)) { | 274 | 616 | std::visit( | 275 | 616 | [&](auto result_is_nullable) { | 276 | 616 | if (attr.enable_aggregate_function_null_v2) { | 277 | 616 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 616 | AggregateFunctionTemplate>( | 279 | 616 | result.release(), argument_types_, attr.is_window_function)); | 280 | 616 | } else { | 281 | 616 | result.reset(new NullableT<false, result_is_nullable, | 282 | 616 | AggregateFunctionTemplate>( | 283 | 616 | result.release(), argument_types_, attr.is_window_function)); | 284 | 616 | } | 285 | 616 | }, | 286 | 616 | make_bool_variant(result_is_nullable)); | 287 | 616 | } | 288 | 1.20k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.20k | return AggregateFunctionPtr(result.release()); | 290 | 1.20k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.47k | TArgs&&... args) { | 267 | 1.47k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.47k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.47k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.47k | if (have_nullable(argument_types_)) { | 274 | 586 | std::visit( | 275 | 586 | [&](auto result_is_nullable) { | 276 | 586 | if (attr.enable_aggregate_function_null_v2) { | 277 | 586 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 586 | AggregateFunctionTemplate>( | 279 | 586 | result.release(), argument_types_, attr.is_window_function)); | 280 | 586 | } else { | 281 | 586 | result.reset(new NullableT<false, result_is_nullable, | 282 | 586 | AggregateFunctionTemplate>( | 283 | 586 | result.release(), argument_types_, attr.is_window_function)); | 284 | 586 | } | 285 | 586 | }, | 286 | 586 | make_bool_variant(result_is_nullable)); | 287 | 586 | } | 288 | 1.47k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.47k | return AggregateFunctionPtr(result.release()); | 290 | 1.47k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.38k | TArgs&&... args) { | 267 | 1.38k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.38k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.38k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.38k | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.38k | return AggregateFunctionPtr(result.release()); | 290 | 1.38k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10 | TArgs&&... args) { | 267 | 10 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10 | return AggregateFunctionPtr(result.release()); | 290 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 716 | TArgs&&... args) { | 267 | 716 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 716 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 716 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 716 | if (have_nullable(argument_types_)) { | 274 | 656 | std::visit( | 275 | 656 | [&](auto result_is_nullable) { | 276 | 656 | if (attr.enable_aggregate_function_null_v2) { | 277 | 656 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 656 | AggregateFunctionTemplate>( | 279 | 656 | result.release(), argument_types_, attr.is_window_function)); | 280 | 656 | } else { | 281 | 656 | result.reset(new NullableT<false, result_is_nullable, | 282 | 656 | AggregateFunctionTemplate>( | 283 | 656 | result.release(), argument_types_, attr.is_window_function)); | 284 | 656 | } | 285 | 656 | }, | 286 | 656 | make_bool_variant(result_is_nullable)); | 287 | 656 | } | 288 | 716 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 716 | return AggregateFunctionPtr(result.release()); | 290 | 716 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 760 | TArgs&&... args) { | 267 | 760 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 760 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 760 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 760 | if (have_nullable(argument_types_)) { | 274 | 693 | std::visit( | 275 | 693 | [&](auto result_is_nullable) { | 276 | 693 | if (attr.enable_aggregate_function_null_v2) { | 277 | 693 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 693 | AggregateFunctionTemplate>( | 279 | 693 | result.release(), argument_types_, attr.is_window_function)); | 280 | 693 | } else { | 281 | 693 | result.reset(new NullableT<false, result_is_nullable, | 282 | 693 | AggregateFunctionTemplate>( | 283 | 693 | result.release(), argument_types_, attr.is_window_function)); | 284 | 693 | } | 285 | 693 | }, | 286 | 693 | make_bool_variant(result_is_nullable)); | 287 | 693 | } | 288 | 760 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 760 | return AggregateFunctionPtr(result.release()); | 290 | 760 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 739 | TArgs&&... args) { | 267 | 739 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 739 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 739 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 739 | if (have_nullable(argument_types_)) { | 274 | 674 | std::visit( | 275 | 674 | [&](auto result_is_nullable) { | 276 | 674 | if (attr.enable_aggregate_function_null_v2) { | 277 | 674 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 674 | AggregateFunctionTemplate>( | 279 | 674 | result.release(), argument_types_, attr.is_window_function)); | 280 | 674 | } else { | 281 | 674 | result.reset(new NullableT<false, result_is_nullable, | 282 | 674 | AggregateFunctionTemplate>( | 283 | 674 | result.release(), argument_types_, attr.is_window_function)); | 284 | 674 | } | 285 | 674 | }, | 286 | 674 | make_bool_variant(result_is_nullable)); | 287 | 674 | } | 288 | 739 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 739 | return AggregateFunctionPtr(result.release()); | 290 | 739 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 426 | TArgs&&... args) { | 267 | 426 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 426 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 426 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 426 | if (have_nullable(argument_types_)) { | 274 | 367 | std::visit( | 275 | 367 | [&](auto result_is_nullable) { | 276 | 367 | if (attr.enable_aggregate_function_null_v2) { | 277 | 367 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 367 | AggregateFunctionTemplate>( | 279 | 367 | result.release(), argument_types_, attr.is_window_function)); | 280 | 367 | } else { | 281 | 367 | result.reset(new NullableT<false, result_is_nullable, | 282 | 367 | AggregateFunctionTemplate>( | 283 | 367 | result.release(), argument_types_, attr.is_window_function)); | 284 | 367 | } | 285 | 367 | }, | 286 | 367 | make_bool_variant(result_is_nullable)); | 287 | 367 | } | 288 | 426 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 426 | return AggregateFunctionPtr(result.release()); | 290 | 426 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 434 | TArgs&&... args) { | 267 | 434 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 434 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 434 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 434 | if (have_nullable(argument_types_)) { | 274 | 82 | std::visit( | 275 | 82 | [&](auto result_is_nullable) { | 276 | 82 | if (attr.enable_aggregate_function_null_v2) { | 277 | 82 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 82 | AggregateFunctionTemplate>( | 279 | 82 | result.release(), argument_types_, attr.is_window_function)); | 280 | 82 | } else { | 281 | 82 | result.reset(new NullableT<false, result_is_nullable, | 282 | 82 | AggregateFunctionTemplate>( | 283 | 82 | result.release(), argument_types_, attr.is_window_function)); | 284 | 82 | } | 285 | 82 | }, | 286 | 82 | make_bool_variant(result_is_nullable)); | 287 | 82 | } | 288 | 434 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 434 | return AggregateFunctionPtr(result.release()); | 290 | 434 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 7 | TArgs&&... args) { | 267 | 7 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 7 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 7 | return AggregateFunctionPtr(result.release()); | 290 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 7 | TArgs&&... args) { | 267 | 7 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 7 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 7 | return AggregateFunctionPtr(result.release()); | 290 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 50 | TArgs&&... args) { | 267 | 50 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 50 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 50 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 50 | if (have_nullable(argument_types_)) { | 274 | 50 | std::visit( | 275 | 50 | [&](auto result_is_nullable) { | 276 | 50 | if (attr.enable_aggregate_function_null_v2) { | 277 | 50 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 50 | AggregateFunctionTemplate>( | 279 | 50 | result.release(), argument_types_, attr.is_window_function)); | 280 | 50 | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 50 | }, | 286 | 50 | make_bool_variant(result_is_nullable)); | 287 | 50 | } | 288 | 50 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 50 | return AggregateFunctionPtr(result.release()); | 290 | 50 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 46 | TArgs&&... args) { | 267 | 46 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 46 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 46 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 46 | if (have_nullable(argument_types_)) { | 274 | 46 | std::visit( | 275 | 46 | [&](auto result_is_nullable) { | 276 | 46 | if (attr.enable_aggregate_function_null_v2) { | 277 | 46 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 46 | AggregateFunctionTemplate>( | 279 | 46 | result.release(), argument_types_, attr.is_window_function)); | 280 | 46 | } else { | 281 | 46 | result.reset(new NullableT<false, result_is_nullable, | 282 | 46 | AggregateFunctionTemplate>( | 283 | 46 | result.release(), argument_types_, attr.is_window_function)); | 284 | 46 | } | 285 | 46 | }, | 286 | 46 | make_bool_variant(result_is_nullable)); | 287 | 46 | } | 288 | 46 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 46 | return AggregateFunctionPtr(result.release()); | 290 | 46 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 42 | TArgs&&... args) { | 267 | 42 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 42 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 42 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 42 | if (have_nullable(argument_types_)) { | 274 | 42 | std::visit( | 275 | 42 | [&](auto result_is_nullable) { | 276 | 42 | if (attr.enable_aggregate_function_null_v2) { | 277 | 42 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 42 | AggregateFunctionTemplate>( | 279 | 42 | result.release(), argument_types_, attr.is_window_function)); | 280 | 42 | } else { | 281 | 42 | result.reset(new NullableT<false, result_is_nullable, | 282 | 42 | AggregateFunctionTemplate>( | 283 | 42 | result.release(), argument_types_, attr.is_window_function)); | 284 | 42 | } | 285 | 42 | }, | 286 | 42 | make_bool_variant(result_is_nullable)); | 287 | 42 | } | 288 | 42 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 42 | return AggregateFunctionPtr(result.release()); | 290 | 42 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 22 | TArgs&&... args) { | 267 | 22 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 22 | if (have_nullable(argument_types_)) { | 274 | 22 | std::visit( | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, | 286 | 22 | make_bool_variant(result_is_nullable)); | 287 | 22 | } | 288 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 22 | return AggregateFunctionPtr(result.release()); | 290 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 48 | TArgs&&... args) { | 267 | 48 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 48 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 48 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 48 | if (have_nullable(argument_types_)) { | 274 | 48 | std::visit( | 275 | 48 | [&](auto result_is_nullable) { | 276 | 48 | if (attr.enable_aggregate_function_null_v2) { | 277 | 48 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 48 | AggregateFunctionTemplate>( | 279 | 48 | result.release(), argument_types_, attr.is_window_function)); | 280 | 48 | } else { | 281 | 48 | result.reset(new NullableT<false, result_is_nullable, | 282 | 48 | AggregateFunctionTemplate>( | 283 | 48 | result.release(), argument_types_, attr.is_window_function)); | 284 | 48 | } | 285 | 48 | }, | 286 | 48 | make_bool_variant(result_is_nullable)); | 287 | 48 | } | 288 | 48 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 48 | return AggregateFunctionPtr(result.release()); | 290 | 48 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 24 | std::visit( | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, | 286 | 24 | make_bool_variant(result_is_nullable)); | 287 | 24 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 40 | TArgs&&... args) { | 267 | 40 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 40 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 40 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 40 | if (have_nullable(argument_types_)) { | 274 | 40 | std::visit( | 275 | 40 | [&](auto result_is_nullable) { | 276 | 40 | if (attr.enable_aggregate_function_null_v2) { | 277 | 40 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 40 | AggregateFunctionTemplate>( | 279 | 40 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 40 | }, | 286 | 40 | make_bool_variant(result_is_nullable)); | 287 | 40 | } | 288 | 40 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 40 | return AggregateFunctionPtr(result.release()); | 290 | 40 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 125 | TArgs&&... args) { | 267 | 125 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 125 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 125 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 125 | if (have_nullable(argument_types_)) { | 274 | 125 | std::visit( | 275 | 125 | [&](auto result_is_nullable) { | 276 | 125 | if (attr.enable_aggregate_function_null_v2) { | 277 | 125 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 125 | AggregateFunctionTemplate>( | 279 | 125 | result.release(), argument_types_, attr.is_window_function)); | 280 | 125 | } else { | 281 | 125 | result.reset(new NullableT<false, result_is_nullable, | 282 | 125 | AggregateFunctionTemplate>( | 283 | 125 | result.release(), argument_types_, attr.is_window_function)); | 284 | 125 | } | 285 | 125 | }, | 286 | 125 | make_bool_variant(result_is_nullable)); | 287 | 125 | } | 288 | 125 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 125 | return AggregateFunctionPtr(result.release()); | 290 | 125 | } |
|
291 | | |
292 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
293 | | static AggregateFunctionPtr create_unary_arguments_return_not_nullable( |
294 | | const DataTypes& argument_types_, const bool result_is_nullable, |
295 | 26.3k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
296 | 26.3k | if (!(argument_types_.size() == 1)) { |
297 | 0 | throw doris::Exception(Status::InternalError( |
298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); |
299 | 0 | } |
300 | 26.3k | if (!attr.is_foreach && result_is_nullable) { |
301 | 0 | throw doris::Exception( |
302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " |
303 | 0 | "result_is_nullable must be false")); |
304 | 0 | } |
305 | 26.3k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
306 | 26.3k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
307 | 26.3k | if (have_nullable(argument_types_)) { |
308 | 14.9k | if (attr.enable_aggregate_function_null_v2) { |
309 | 14.1k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
310 | 14.1k | result.release(), argument_types_, attr.is_window_function)); |
311 | 14.1k | } else { |
312 | 803 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
313 | 803 | result.release(), argument_types_, attr.is_window_function)); |
314 | 803 | } |
315 | 14.9k | } |
316 | 26.3k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
317 | 26.3k | return AggregateFunctionPtr(result.release()); |
318 | 26.3k | } Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 280 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 280 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 280 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 280 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 280 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 280 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 280 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 280 | return AggregateFunctionPtr(result.release()); | 318 | 280 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 18 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 18 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 18 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 18 | return AggregateFunctionPtr(result.release()); | 318 | 18 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 6 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 6 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 6 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 6 | return AggregateFunctionPtr(result.release()); | 318 | 6 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 6 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 6 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 6 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 6 | return AggregateFunctionPtr(result.release()); | 318 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 15 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 15 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 15 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 15 | return AggregateFunctionPtr(result.release()); | 318 | 15 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 23 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 23 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 23 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 23 | return AggregateFunctionPtr(result.release()); | 318 | 23 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 16 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 16 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 16 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 16 | return AggregateFunctionPtr(result.release()); | 318 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 12 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 12 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 12 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 12 | return AggregateFunctionPtr(result.release()); | 318 | 12 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 102 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 102 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 102 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 102 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 102 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 102 | if (have_nullable(argument_types_)) { | 308 | 102 | if (attr.enable_aggregate_function_null_v2) { | 309 | 102 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 102 | result.release(), argument_types_, attr.is_window_function)); | 311 | 102 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 102 | } | 316 | 102 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 102 | return AggregateFunctionPtr(result.release()); | 318 | 102 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 303 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 303 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 303 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 303 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 303 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 303 | if (have_nullable(argument_types_)) { | 308 | 203 | if (attr.enable_aggregate_function_null_v2) { | 309 | 203 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 203 | result.release(), argument_types_, attr.is_window_function)); | 311 | 203 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 203 | } | 316 | 303 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 303 | return AggregateFunctionPtr(result.release()); | 318 | 303 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 320 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 320 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 320 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 320 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 320 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 320 | if (have_nullable(argument_types_)) { | 308 | 209 | if (attr.enable_aggregate_function_null_v2) { | 309 | 209 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 209 | result.release(), argument_types_, attr.is_window_function)); | 311 | 209 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 209 | } | 316 | 320 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 320 | return AggregateFunctionPtr(result.release()); | 318 | 320 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 9.94k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 9.94k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 9.94k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 9.94k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 9.94k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 9.94k | if (have_nullable(argument_types_)) { | 308 | 6.35k | if (attr.enable_aggregate_function_null_v2) { | 309 | 5.54k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 5.54k | result.release(), argument_types_, attr.is_window_function)); | 311 | 5.54k | } else { | 312 | 803 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 803 | result.release(), argument_types_, attr.is_window_function)); | 314 | 803 | } | 315 | 6.35k | } | 316 | 9.94k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 9.94k | return AggregateFunctionPtr(result.release()); | 318 | 9.94k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2.99k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2.99k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2.99k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2.99k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2.99k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2.99k | if (have_nullable(argument_types_)) { | 308 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 309 | 1.50k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 311 | 1.50k | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 1.50k | } | 316 | 2.99k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2.99k | return AggregateFunctionPtr(result.release()); | 318 | 2.99k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 244 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 244 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 244 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 244 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 244 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 244 | if (have_nullable(argument_types_)) { | 308 | 125 | if (attr.enable_aggregate_function_null_v2) { | 309 | 125 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 125 | result.release(), argument_types_, attr.is_window_function)); | 311 | 125 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 125 | } | 316 | 244 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 244 | return AggregateFunctionPtr(result.release()); | 318 | 244 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 120 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 120 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 120 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 120 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 120 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 120 | if (have_nullable(argument_types_)) { | 308 | 120 | if (attr.enable_aggregate_function_null_v2) { | 309 | 120 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 120 | result.release(), argument_types_, attr.is_window_function)); | 311 | 120 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 120 | } | 316 | 120 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 120 | return AggregateFunctionPtr(result.release()); | 318 | 120 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 154 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 154 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 154 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 154 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 154 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 154 | if (have_nullable(argument_types_)) { | 308 | 148 | if (attr.enable_aggregate_function_null_v2) { | 309 | 148 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 148 | result.release(), argument_types_, attr.is_window_function)); | 311 | 148 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 148 | } | 316 | 154 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 154 | return AggregateFunctionPtr(result.release()); | 318 | 154 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 82 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 82 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 82 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 82 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 82 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 82 | if (have_nullable(argument_types_)) { | 308 | 78 | if (attr.enable_aggregate_function_null_v2) { | 309 | 78 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 78 | result.release(), argument_types_, attr.is_window_function)); | 311 | 78 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 78 | } | 316 | 82 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 82 | return AggregateFunctionPtr(result.release()); | 318 | 82 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 52 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 52 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 52 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 52 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 52 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 52 | if (have_nullable(argument_types_)) { | 308 | 52 | if (attr.enable_aggregate_function_null_v2) { | 309 | 52 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 52 | result.release(), argument_types_, attr.is_window_function)); | 311 | 52 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 52 | } | 316 | 52 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 52 | return AggregateFunctionPtr(result.release()); | 318 | 52 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 1.72k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 1.72k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 1.72k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 1.72k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 1.72k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 1.72k | if (have_nullable(argument_types_)) { | 308 | 923 | if (attr.enable_aggregate_function_null_v2) { | 309 | 923 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 923 | result.release(), argument_types_, attr.is_window_function)); | 311 | 923 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 923 | } | 316 | 1.72k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 1.72k | return AggregateFunctionPtr(result.release()); | 318 | 1.72k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 510 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 510 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 510 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 510 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 510 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 510 | if (have_nullable(argument_types_)) { | 308 | 394 | if (attr.enable_aggregate_function_null_v2) { | 309 | 394 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 394 | result.release(), argument_types_, attr.is_window_function)); | 311 | 394 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 394 | } | 316 | 510 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 510 | return AggregateFunctionPtr(result.release()); | 318 | 510 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 26 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 26 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 26 | if (have_nullable(argument_types_)) { | 308 | 26 | if (attr.enable_aggregate_function_null_v2) { | 309 | 26 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 26 | result.release(), argument_types_, attr.is_window_function)); | 311 | 26 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 26 | } | 316 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 26 | return AggregateFunctionPtr(result.release()); | 318 | 26 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 5.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 5.20k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 5.20k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 5.20k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 5.20k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 5.20k | if (have_nullable(argument_types_)) { | 308 | 3.04k | if (attr.enable_aggregate_function_null_v2) { | 309 | 3.04k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 3.04k | result.release(), argument_types_, attr.is_window_function)); | 311 | 3.04k | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 3.04k | } | 316 | 5.20k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 5.20k | return AggregateFunctionPtr(result.release()); | 318 | 5.20k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 3.45k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 3.45k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 3.45k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 3.45k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 3.45k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 3.45k | if (have_nullable(argument_types_)) { | 308 | 1.18k | if (attr.enable_aggregate_function_null_v2) { | 309 | 1.18k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 1.18k | result.release(), argument_types_, attr.is_window_function)); | 311 | 1.18k | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 1.18k | } | 316 | 3.45k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 3.45k | return AggregateFunctionPtr(result.release()); | 318 | 3.45k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 700 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 700 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 700 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 700 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 700 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 700 | if (have_nullable(argument_types_)) { | 308 | 452 | if (attr.enable_aggregate_function_null_v2) { | 309 | 452 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 452 | result.release(), argument_types_, attr.is_window_function)); | 311 | 452 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 452 | } | 316 | 700 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 700 | return AggregateFunctionPtr(result.release()); | 318 | 700 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 8 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 8 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 8 | if (have_nullable(argument_types_)) { | 308 | 8 | if (attr.enable_aggregate_function_null_v2) { | 309 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 8 | result.release(), argument_types_, attr.is_window_function)); | 311 | 8 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 8 | } | 316 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 8 | return AggregateFunctionPtr(result.release()); | 318 | 8 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 8 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 8 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 8 | if (have_nullable(argument_types_)) { | 308 | 8 | if (attr.enable_aggregate_function_null_v2) { | 309 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 8 | result.release(), argument_types_, attr.is_window_function)); | 311 | 8 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 8 | } | 316 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 8 | return AggregateFunctionPtr(result.release()); | 318 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ |
319 | | |
320 | | /// AggregateFunctionTemplate will handle the nullable arguments, no need to use |
321 | | /// AggregateFunctionNullVariadicInline/AggregateFunctionNullUnaryInline |
322 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
323 | | static AggregateFunctionPtr create_ignore_nullable(const DataTypes& argument_types_, |
324 | | const bool /*result_is_nullable*/, |
325 | | const AggregateFunctionAttr& /*attr*/, |
326 | 2.00k | TArgs&&... args) { |
327 | 2.00k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( |
328 | 2.00k | std::forward<TArgs>(args)..., argument_types_); |
329 | 2.00k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
330 | 2.00k | return AggregateFunctionPtr(result.release()); |
331 | 2.00k | } _ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 26 | TArgs&&... args) { | 327 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 26 | std::forward<TArgs>(args)..., argument_types_); | 329 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 26 | return AggregateFunctionPtr(result.release()); | 331 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 19 | TArgs&&... args) { | 327 | 19 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 19 | std::forward<TArgs>(args)..., argument_types_); | 329 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 19 | return AggregateFunctionPtr(result.release()); | 331 | 19 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 14 | TArgs&&... args) { | 327 | 14 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 14 | std::forward<TArgs>(args)..., argument_types_); | 329 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 14 | return AggregateFunctionPtr(result.release()); | 331 | 14 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 26 | TArgs&&... args) { | 327 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 26 | std::forward<TArgs>(args)..., argument_types_); | 329 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 26 | return AggregateFunctionPtr(result.release()); | 331 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 19 | TArgs&&... args) { | 327 | 19 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 19 | std::forward<TArgs>(args)..., argument_types_); | 329 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 19 | return AggregateFunctionPtr(result.release()); | 331 | 19 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 14 | TArgs&&... args) { | 327 | 14 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 14 | std::forward<TArgs>(args)..., argument_types_); | 329 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 14 | return AggregateFunctionPtr(result.release()); | 331 | 14 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 198 | TArgs&&... args) { | 327 | 198 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 198 | std::forward<TArgs>(args)..., argument_types_); | 329 | 198 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 198 | return AggregateFunctionPtr(result.release()); | 331 | 198 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 3 | TArgs&&... args) { | 327 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 3 | std::forward<TArgs>(args)..., argument_types_); | 329 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 3 | return AggregateFunctionPtr(result.release()); | 331 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 287 | TArgs&&... args) { | 327 | 287 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 287 | std::forward<TArgs>(args)..., argument_types_); | 329 | 287 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 287 | return AggregateFunctionPtr(result.release()); | 331 | 287 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 10 | TArgs&&... args) { | 327 | 10 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 10 | std::forward<TArgs>(args)..., argument_types_); | 329 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 10 | return AggregateFunctionPtr(result.release()); | 331 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE2EEELS4_2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE3EEELS4_3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE4EEELS4_4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE5EEELS4_5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE6EEELS4_6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 3 | TArgs&&... args) { | 327 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 3 | std::forward<TArgs>(args)..., argument_types_); | 329 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 3 | return AggregateFunctionPtr(result.release()); | 331 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE7EEELS4_7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE8EEELS4_8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE9EEELS4_9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE28EEELS4_28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE29EEELS4_29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE20EEELS4_20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE30EEELS4_30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE35EEELS4_35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE11EEELS4_11EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE25EEELS4_25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE26EEELS4_26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE12EEELS4_12EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE27EEELS4_27EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE42EEELS4_42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE36EEELS4_36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE37EEELS4_37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE23EEELS4_23EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionMapAggV2INS_29AggregateFunctionMapAggDataV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 1.08k | TArgs&&... args) { | 327 | 1.08k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 1.08k | std::forward<TArgs>(args)..., argument_types_); | 329 | 1.08k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 1.08k | return AggregateFunctionPtr(result.release()); | 331 | 1.08k | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
|
332 | | }; |
333 | | |
334 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
335 | | struct CurryDirect { |
336 | | template <PrimitiveType type> |
337 | | using T = AggregateFunctionTemplate<type>; |
338 | | }; |
339 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
340 | | struct CurryDirectWithResultType { |
341 | | template <PrimitiveType type, PrimitiveType result_type> |
342 | | using T = AggregateFunctionTemplate<type, result_type>; |
343 | | }; |
344 | | template <template <typename> class AggregateFunctionTemplate, template <PrimitiveType> class Data> |
345 | | struct CurryData { |
346 | | template <PrimitiveType Type> |
347 | | using T = AggregateFunctionTemplate<Data<Type>>; |
348 | | }; |
349 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
350 | | template <PrimitiveType> class Impl> |
351 | | struct CurryDataImpl { |
352 | | template <PrimitiveType Type> |
353 | | using T = AggregateFunctionTemplate<Data<Impl<Type>>>; |
354 | | }; |
355 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
356 | | template <PrimitiveType> class Data> |
357 | | struct CurryDirectAndData { |
358 | | template <PrimitiveType Type> |
359 | | using T = AggregateFunctionTemplate<Type, Data<Type>>; |
360 | | }; |
361 | | |
362 | | template <int define_index, PrimitiveType... AllowedTypes> |
363 | | struct creator_with_type_list_base { |
364 | | template <typename Class, typename... TArgs> |
365 | | static AggregateFunctionPtr create_base(const DataTypes& argument_types, |
366 | | const bool result_is_nullable, |
367 | 65.2k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
368 | 65.2k | auto create = [&]<PrimitiveType Ptype>() { |
369 | 64.5k | return creator_without_type::create<typename Class::template T<Ptype>>( |
370 | 64.5k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
371 | 64.5k | }; _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 3.30k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.30k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.30k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.30k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 41 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 41 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 41 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 41 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 7.86k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 7.86k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 7.86k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 7.86k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 2.57k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2.57k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2.57k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2.57k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 78 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 78 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 78 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 78 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 24 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 24 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 24 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 24 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 344 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 344 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 344 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 344 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 83 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 83 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 83 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 83 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 29 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 29 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 29 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 29 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1.24k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.24k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.24k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.24k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 402 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 402 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 402 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 402 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 207 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 207 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 207 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 207 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 533 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 533 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 533 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 533 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 58 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 58 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 58 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 58 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 602 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 602 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 602 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 602 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_17EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_41EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 29 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 29 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 29 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 29 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 286 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 286 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 286 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 286 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 285 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 285 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 285 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 285 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 284 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 284 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 284 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 284 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 578 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 578 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 578 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 578 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 376 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 376 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 376 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 376 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 921 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 921 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 921 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 921 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 980 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 980 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 980 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 980 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1.20k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.20k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.20k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.20k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 3.75k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.75k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.75k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.75k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 1.07k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.07k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.07k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.07k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 1.47k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.47k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.47k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.47k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 1.92k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.92k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.92k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.92k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 894 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 894 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 894 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 894 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 30 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 30 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 30 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 30 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1.26k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.26k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.26k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 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 | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 259 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 259 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 259 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 259 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 254 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 254 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 254 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 254 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 102 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 102 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 102 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 102 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 303 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 303 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 303 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 303 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 320 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 320 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 320 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 320 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 9.95k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 9.95k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 9.95k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 9.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_6EEEDav Line | Count | Source | 368 | 2.99k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2.99k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2.99k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2.99k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 244 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 244 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 244 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 244 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 120 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 120 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 120 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 120 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 154 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 154 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 154 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 154 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav Line | Count | Source | 368 | 82 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 82 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 82 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 82 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 52 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 52 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 52 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 52 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 1.72k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.72k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.72k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.72k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 510 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 510 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 510 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 510 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 5.20k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 5.20k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 5.20k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 5.20k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 3.45k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.45k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.45k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.45k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 700 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 700 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 700 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 700 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1.31k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.31k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.31k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.31k | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 246 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 246 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 246 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 246 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 14 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 14 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 14 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 14 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 6 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 6 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 6 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 45 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 45 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 45 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 45 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 258 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 258 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 258 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 258 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 5 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 5 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 5 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 5 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 18 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 18 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 43 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 43 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 43 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 43 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 281 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 281 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 281 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 281 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 39 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 39 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 39 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 39 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 277 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 277 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 277 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 277 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_23EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 17 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 17 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 17 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 17 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_13EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_41EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 291 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 291 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 291 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 291 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 278 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 278 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 278 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 278 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 275 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 275 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 275 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 275 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 7 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 60 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 60 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 60 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 60 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 40 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 56 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 56 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 56 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 56 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 50 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 50 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 50 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 50 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 46 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 46 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 46 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 46 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 69 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 69 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 69 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 69 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 24 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 24 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 24 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 24 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 40 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 125 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 125 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 125 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 125 | }; |
|
372 | 65.2k | AggregateFunctionPtr result = nullptr; |
373 | 65.2k | auto type = argument_types[define_index]->get_primitive_type(); |
374 | 65.2k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || |
375 | 65.2k | type == PrimitiveType::TYPE_JSONB) { |
376 | 3.03k | type = PrimitiveType::TYPE_VARCHAR; |
377 | 3.03k | } |
378 | | |
379 | 65.2k | ( |
380 | 865k | [&] { |
381 | 865k | if (type == AllowedTypes) { |
382 | 64.5k | result = create.template operator()<AllowedTypes>(); |
383 | 64.5k | } |
384 | 865k | }(), _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 3.30k | result = create.template operator()<AllowedTypes>(); | 383 | 3.30k | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 41 | result = create.template operator()<AllowedTypes>(); | 383 | 41 | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 7.86k | result = create.template operator()<AllowedTypes>(); | 383 | 7.86k | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 2.57k | result = create.template operator()<AllowedTypes>(); | 383 | 2.57k | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 78 | result = create.template operator()<AllowedTypes>(); | 383 | 78 | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 24 | result = create.template operator()<AllowedTypes>(); | 383 | 24 | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 344 | result = create.template operator()<AllowedTypes>(); | 383 | 344 | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 14.2k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.97k | [&] { | 381 | 1.97k | if (type == AllowedTypes) { | 382 | 83 | result = create.template operator()<AllowedTypes>(); | 383 | 83 | } | 384 | 1.97k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 29 | result = create.template operator()<AllowedTypes>(); | 383 | 29 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.97k | [&] { | 381 | 1.97k | if (type == AllowedTypes) { | 382 | 1.24k | result = create.template operator()<AllowedTypes>(); | 383 | 1.24k | } | 384 | 1.97k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 401 | result = create.template operator()<AllowedTypes>(); | 383 | 401 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.97k | [&] { | 381 | 1.97k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.97k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.97k | [&] { | 381 | 1.97k | if (type == AllowedTypes) { | 382 | 207 | result = create.template operator()<AllowedTypes>(); | 383 | 207 | } | 384 | 1.97k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.97k | [&] { | 381 | 1.97k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.97k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 533 | result = create.template operator()<AllowedTypes>(); | 383 | 533 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 58 | result = create.template operator()<AllowedTypes>(); | 383 | 58 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 1.26k | [&] { | 381 | 1.26k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.26k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 1.26k | [&] { | 381 | 1.26k | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 1.26k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 1.26k | [&] { | 381 | 1.26k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 1.26k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 1.26k | [&] { | 381 | 1.26k | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 1.26k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 602 | result = create.template operator()<AllowedTypes>(); | 383 | 602 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.26k | [&] { | 381 | 1.26k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.26k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 1.27k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 1.27k | }(), |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 397 | [&] { | 381 | 397 | if (type == AllowedTypes) { | 382 | 29 | result = create.template operator()<AllowedTypes>(); | 383 | 29 | } | 384 | 397 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 397 | [&] { | 381 | 397 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 397 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 397 | [&] { | 381 | 397 | if (type == AllowedTypes) { | 382 | 286 | result = create.template operator()<AllowedTypes>(); | 383 | 286 | } | 384 | 397 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 394 | [&] { | 381 | 394 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 394 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 392 | [&] { | 381 | 392 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 392 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 394 | [&] { | 381 | 394 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 394 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 285 | result = create.template operator()<AllowedTypes>(); | 383 | 285 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 393 | [&] { | 381 | 393 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 393 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 392 | [&] { | 381 | 392 | if (type == AllowedTypes) { | 382 | 284 | result = create.template operator()<AllowedTypes>(); | 383 | 284 | } | 384 | 392 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 390 | [&] { | 381 | 390 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 390 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 390 | [&] { | 381 | 390 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 390 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.65k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 1.65k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 578 | result = create.template operator()<AllowedTypes>(); | 383 | 578 | } | 384 | 1.65k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 376 | result = create.template operator()<AllowedTypes>(); | 383 | 376 | } | 384 | 1.65k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.65k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 921 | result = create.template operator()<AllowedTypes>(); | 383 | 921 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 980 | result = create.template operator()<AllowedTypes>(); | 383 | 980 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.20k | result = create.template operator()<AllowedTypes>(); | 383 | 1.20k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 3.74k | result = create.template operator()<AllowedTypes>(); | 383 | 3.74k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.07k | result = create.template operator()<AllowedTypes>(); | 383 | 1.07k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.47k | result = create.template operator()<AllowedTypes>(); | 383 | 1.47k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.92k | result = create.template operator()<AllowedTypes>(); | 383 | 1.92k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 894 | result = create.template operator()<AllowedTypes>(); | 383 | 894 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 30 | result = create.template operator()<AllowedTypes>(); | 383 | 30 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.26k | result = create.template operator()<AllowedTypes>(); | 383 | 1.26k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 259 | result = create.template operator()<AllowedTypes>(); | 383 | 259 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 266 | [&] { | 381 | 266 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 266 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 266 | [&] { | 381 | 266 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 266 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 266 | [&] { | 381 | 266 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 266 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 266 | [&] { | 381 | 266 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 266 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 267 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 254 | [&] { | 381 | 254 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 254 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 260 | [&] { | 381 | 260 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 260 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 257 | [&] { | 381 | 257 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 257 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 256 | [&] { | 381 | 256 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 256 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 256 | [&] { | 381 | 256 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 256 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 257 | [&] { | 381 | 257 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 257 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 256 | [&] { | 381 | 256 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 256 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 256 | [&] { | 381 | 256 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 256 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 256 | [&] { | 381 | 256 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 256 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 260 | [&] { | 381 | 260 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 260 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 264 | [&] { | 381 | 264 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 264 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 262 | [&] { | 381 | 262 | if (type == AllowedTypes) { | 382 | 254 | result = create.template operator()<AllowedTypes>(); | 383 | 254 | } | 384 | 262 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 259 | [&] { | 381 | 259 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 259 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 258 | [&] { | 381 | 258 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 258 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 258 | [&] { | 381 | 258 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 258 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 261 | [&] { | 381 | 261 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 261 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 261 | [&] { | 381 | 261 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 261 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE17_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 102 | result = create.template operator()<AllowedTypes>(); | 383 | 102 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 303 | result = create.template operator()<AllowedTypes>(); | 383 | 303 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 320 | result = create.template operator()<AllowedTypes>(); | 383 | 320 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 9.94k | result = create.template operator()<AllowedTypes>(); | 383 | 9.94k | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 2.99k | result = create.template operator()<AllowedTypes>(); | 383 | 2.99k | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 244 | result = create.template operator()<AllowedTypes>(); | 383 | 244 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 120 | result = create.template operator()<AllowedTypes>(); | 383 | 120 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 154 | result = create.template operator()<AllowedTypes>(); | 383 | 154 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 82 | result = create.template operator()<AllowedTypes>(); | 383 | 82 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 52 | result = create.template operator()<AllowedTypes>(); | 383 | 52 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 1.72k | result = create.template operator()<AllowedTypes>(); | 383 | 1.72k | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 510 | result = create.template operator()<AllowedTypes>(); | 383 | 510 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 5.20k | result = create.template operator()<AllowedTypes>(); | 383 | 5.20k | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 3.45k | result = create.template operator()<AllowedTypes>(); | 383 | 3.45k | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 700 | result = create.template operator()<AllowedTypes>(); | 383 | 700 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 25.9k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 1.31k | result = create.template operator()<AllowedTypes>(); | 383 | 1.31k | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.31k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 246 | result = create.template operator()<AllowedTypes>(); | 383 | 246 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 247 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 14 | result = create.template operator()<AllowedTypes>(); | 383 | 14 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 6 | result = create.template operator()<AllowedTypes>(); | 383 | 6 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 45 | result = create.template operator()<AllowedTypes>(); | 383 | 45 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 271 | [&] { | 381 | 271 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 271 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 272 | [&] { | 381 | 272 | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 272 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 271 | [&] { | 381 | 271 | if (type == AllowedTypes) { | 382 | 258 | result = create.template operator()<AllowedTypes>(); | 383 | 258 | } | 384 | 271 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 271 | [&] { | 381 | 271 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 271 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 270 | [&] { | 381 | 270 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 270 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 5 | result = create.template operator()<AllowedTypes>(); | 383 | 5 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 18 | result = create.template operator()<AllowedTypes>(); | 383 | 18 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 43 | result = create.template operator()<AllowedTypes>(); | 383 | 43 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 542 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 542 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 542 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 281 | result = create.template operator()<AllowedTypes>(); | 383 | 281 | } | 384 | 542 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 542 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 541 | [&] { | 381 | 541 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 541 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 541 | [&] { | 381 | 541 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 541 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 541 | [&] { | 381 | 541 | if (type == AllowedTypes) { | 382 | 39 | result = create.template operator()<AllowedTypes>(); | 383 | 39 | } | 384 | 541 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 540 | [&] { | 381 | 540 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 540 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 412 | [&] { | 381 | 412 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 412 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 411 | [&] { | 381 | 411 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 411 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 412 | [&] { | 381 | 412 | if (type == AllowedTypes) { | 382 | 278 | result = create.template operator()<AllowedTypes>(); | 383 | 278 | } | 384 | 412 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 412 | [&] { | 381 | 412 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 412 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 409 | [&] { | 381 | 409 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 409 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 408 | [&] { | 381 | 408 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 408 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 408 | [&] { | 381 | 408 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 408 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 409 | [&] { | 381 | 409 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 409 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 408 | [&] { | 381 | 408 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 408 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 408 | [&] { | 381 | 408 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 408 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 407 | [&] { | 381 | 407 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 407 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 19 | [&] { | 381 | 19 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 19 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 19 | [&] { | 381 | 19 | if (type == AllowedTypes) { | 382 | 17 | result = create.template operator()<AllowedTypes>(); | 383 | 17 | } | 384 | 19 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 19 | [&] { | 381 | 19 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 19 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 19 | [&] { | 381 | 19 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 19 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 291 | [&] { | 381 | 291 | if (type == AllowedTypes) { | 382 | 291 | result = create.template operator()<AllowedTypes>(); | 383 | 291 | } | 384 | 291 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 26 | [&] { | 381 | 26 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 26 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 277 | [&] { | 381 | 277 | if (type == AllowedTypes) { | 382 | 277 | result = create.template operator()<AllowedTypes>(); | 383 | 277 | } | 384 | 277 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 275 | [&] { | 381 | 275 | if (type == AllowedTypes) { | 382 | 275 | result = create.template operator()<AllowedTypes>(); | 383 | 275 | } | 384 | 275 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 7 | [&] { | 381 | 7 | if (type == AllowedTypes) { | 382 | 7 | result = create.template operator()<AllowedTypes>(); | 383 | 7 | } | 384 | 7 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 8 | [&] { | 381 | 8 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 8 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 60 | result = create.template operator()<AllowedTypes>(); | 383 | 60 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 40 | result = create.template operator()<AllowedTypes>(); | 383 | 40 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 56 | result = create.template operator()<AllowedTypes>(); | 383 | 56 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 50 | result = create.template operator()<AllowedTypes>(); | 383 | 50 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 46 | result = create.template operator()<AllowedTypes>(); | 383 | 46 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 69 | result = create.template operator()<AllowedTypes>(); | 383 | 69 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 24 | result = create.template operator()<AllowedTypes>(); | 383 | 24 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 40 | result = create.template operator()<AllowedTypes>(); | 383 | 40 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 125 | result = create.template operator()<AllowedTypes>(); | 383 | 125 | } | 384 | 221 | }(), |
|
385 | 65.2k | ...); |
386 | | |
387 | 65.2k | return result; |
388 | 65.2k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 14.2k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 14.2k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 14.2k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 14.2k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 14.2k | }; | 372 | 14.2k | AggregateFunctionPtr result = nullptr; | 373 | 14.2k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 14.2k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 14.2k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 14.2k | ( | 380 | 14.2k | [&] { | 381 | 14.2k | if (type == AllowedTypes) { | 382 | 14.2k | result = create.template operator()<AllowedTypes>(); | 383 | 14.2k | } | 384 | 14.2k | }(), | 385 | 14.2k | ...); | 386 | | | 387 | 14.2k | return result; | 388 | 14.2k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.96k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.96k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.96k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.96k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.96k | }; | 372 | 1.96k | AggregateFunctionPtr result = nullptr; | 373 | 1.96k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.96k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.96k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 1.96k | ( | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 1.96k | result = create.template operator()<AllowedTypes>(); | 383 | 1.96k | } | 384 | 1.96k | }(), | 385 | 1.96k | ...); | 386 | | | 387 | 1.96k | return result; | 388 | 1.96k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.27k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.27k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.27k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.27k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.27k | }; | 372 | 1.27k | AggregateFunctionPtr result = nullptr; | 373 | 1.27k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.27k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.27k | type == PrimitiveType::TYPE_JSONB) { | 376 | 570 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 570 | } | 378 | | | 379 | 1.27k | ( | 380 | 1.27k | [&] { | 381 | 1.27k | if (type == AllowedTypes) { | 382 | 1.27k | result = create.template operator()<AllowedTypes>(); | 383 | 1.27k | } | 384 | 1.27k | }(), | 385 | 1.27k | ...); | 386 | | | 387 | 1.27k | return result; | 388 | 1.27k | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 397 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 397 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 397 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 397 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 397 | }; | 372 | 397 | AggregateFunctionPtr result = nullptr; | 373 | 397 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 397 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 397 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 397 | ( | 380 | 397 | [&] { | 381 | 397 | if (type == AllowedTypes) { | 382 | 397 | result = create.template operator()<AllowedTypes>(); | 383 | 397 | } | 384 | 397 | }(), | 385 | 397 | ...); | 386 | | | 387 | 397 | return result; | 388 | 397 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 394 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 394 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 394 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 394 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 394 | }; | 372 | 394 | AggregateFunctionPtr result = nullptr; | 373 | 394 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 394 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 394 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 394 | ( | 380 | 394 | [&] { | 381 | 394 | if (type == AllowedTypes) { | 382 | 394 | result = create.template operator()<AllowedTypes>(); | 383 | 394 | } | 384 | 394 | }(), | 385 | 394 | ...); | 386 | | | 387 | 394 | return result; | 388 | 394 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 392 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 392 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 392 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 392 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 392 | }; | 372 | 392 | AggregateFunctionPtr result = nullptr; | 373 | 392 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 392 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 392 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 392 | ( | 380 | 392 | [&] { | 381 | 392 | if (type == AllowedTypes) { | 382 | 392 | result = create.template operator()<AllowedTypes>(); | 383 | 392 | } | 384 | 392 | }(), | 385 | 392 | ...); | 386 | | | 387 | 392 | return result; | 388 | 392 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.65k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.65k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.65k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.65k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.65k | }; | 372 | 1.65k | AggregateFunctionPtr result = nullptr; | 373 | 1.65k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.65k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.65k | type == PrimitiveType::TYPE_JSONB) { | 376 | 237 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 237 | } | 378 | | | 379 | 1.65k | ( | 380 | 1.65k | [&] { | 381 | 1.65k | if (type == AllowedTypes) { | 382 | 1.65k | result = create.template operator()<AllowedTypes>(); | 383 | 1.65k | } | 384 | 1.65k | }(), | 385 | 1.65k | ...); | 386 | | | 387 | 1.65k | return result; | 388 | 1.65k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 13.5k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 13.5k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13.5k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13.5k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13.5k | }; | 372 | 13.5k | AggregateFunctionPtr result = nullptr; | 373 | 13.5k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 13.5k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 13.5k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 13.5k | ( | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 13.5k | result = create.template operator()<AllowedTypes>(); | 383 | 13.5k | } | 384 | 13.5k | }(), | 385 | 13.5k | ...); | 386 | | | 387 | 13.5k | return result; | 388 | 13.5k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; | 372 | 12 | AggregateFunctionPtr result = nullptr; | 373 | 12 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 12 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 12 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 12 | ( | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 12 | }(), | 385 | 12 | ...); | 386 | | | 387 | 12 | return result; | 388 | 12 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 267 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 267 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 267 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 267 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 267 | }; | 372 | 267 | AggregateFunctionPtr result = nullptr; | 373 | 267 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 267 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 267 | type == PrimitiveType::TYPE_JSONB) { | 376 | 108 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 108 | } | 378 | | | 379 | 267 | ( | 380 | 267 | [&] { | 381 | 267 | if (type == AllowedTypes) { | 382 | 267 | result = create.template operator()<AllowedTypes>(); | 383 | 267 | } | 384 | 267 | }(), | 385 | 267 | ...); | 386 | | | 387 | 267 | return result; | 388 | 267 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; | 372 | 2 | AggregateFunctionPtr result = nullptr; | 373 | 2 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 2 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 2 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 2 | ( | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 2 | }(), | 385 | 2 | ...); | 386 | | | 387 | 2 | return result; | 388 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 254 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 254 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 254 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 254 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 254 | }; | 372 | 254 | AggregateFunctionPtr result = nullptr; | 373 | 254 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 258 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 254 | type == PrimitiveType::TYPE_JSONB) { | 376 | 110 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 110 | } | 378 | | | 379 | 254 | ( | 380 | 254 | [&] { | 381 | 254 | if (type == AllowedTypes) { | 382 | 254 | result = create.template operator()<AllowedTypes>(); | 383 | 254 | } | 384 | 254 | }(), | 385 | 254 | ...); | 386 | | | 387 | 254 | return result; | 388 | 254 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 25.9k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 25.9k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 25.9k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 25.9k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 25.9k | }; | 372 | 25.9k | AggregateFunctionPtr result = nullptr; | 373 | 25.9k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 25.9k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 25.9k | type == PrimitiveType::TYPE_JSONB) { | 376 | 1.93k | type = PrimitiveType::TYPE_VARCHAR; | 377 | 1.93k | } | 378 | | | 379 | 25.9k | ( | 380 | 25.9k | [&] { | 381 | 25.9k | if (type == AllowedTypes) { | 382 | 25.9k | result = create.template operator()<AllowedTypes>(); | 383 | 25.9k | } | 384 | 25.9k | }(), | 385 | 25.9k | ...); | 386 | | | 387 | 25.9k | return result; | 388 | 25.9k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.31k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.31k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.31k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.31k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.31k | }; | 372 | 1.31k | AggregateFunctionPtr result = nullptr; | 373 | 1.31k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.31k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.31k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 1.31k | ( | 380 | 1.31k | [&] { | 381 | 1.31k | if (type == AllowedTypes) { | 382 | 1.31k | result = create.template operator()<AllowedTypes>(); | 383 | 1.31k | } | 384 | 1.31k | }(), | 385 | 1.31k | ...); | 386 | | | 387 | 1.31k | return result; | 388 | 1.31k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 247 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 247 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 247 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 247 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 247 | }; | 372 | 247 | AggregateFunctionPtr result = nullptr; | 373 | 247 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 247 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 247 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 247 | ( | 380 | 247 | [&] { | 381 | 247 | if (type == AllowedTypes) { | 382 | 247 | result = create.template operator()<AllowedTypes>(); | 383 | 247 | } | 384 | 247 | }(), | 385 | 247 | ...); | 386 | | | 387 | 247 | return result; | 388 | 247 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 107 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 107 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 107 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 107 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 107 | }; | 372 | 107 | AggregateFunctionPtr result = nullptr; | 373 | 107 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 107 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 107 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 107 | ( | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 107 | result = create.template operator()<AllowedTypes>(); | 383 | 107 | } | 384 | 107 | }(), | 385 | 107 | ...); | 386 | | | 387 | 107 | return result; | 388 | 107 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 87 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 87 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 87 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 87 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 87 | }; | 372 | 87 | AggregateFunctionPtr result = nullptr; | 373 | 87 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 87 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 87 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 87 | ( | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 87 | result = create.template operator()<AllowedTypes>(); | 383 | 87 | } | 384 | 87 | }(), | 385 | 87 | ...); | 386 | | | 387 | 87 | return result; | 388 | 87 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; | 372 | 3 | AggregateFunctionPtr result = nullptr; | 373 | 3 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 3 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 3 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 3 | ( | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 3 | }(), | 385 | 3 | ...); | 386 | | | 387 | 3 | return result; | 388 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; | 372 | 11 | AggregateFunctionPtr result = nullptr; | 373 | 11 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 11 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 11 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 11 | ( | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 11 | }(), | 385 | 11 | ...); | 386 | | | 387 | 11 | return result; | 388 | 11 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 272 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 272 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 272 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 272 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 272 | }; | 372 | 272 | AggregateFunctionPtr result = nullptr; | 373 | 272 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 272 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 272 | type == PrimitiveType::TYPE_JSONB) { | 376 | 2 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 2 | } | 378 | | | 379 | 272 | ( | 380 | 272 | [&] { | 381 | 272 | if (type == AllowedTypes) { | 382 | 272 | result = create.template operator()<AllowedTypes>(); | 383 | 272 | } | 384 | 272 | }(), | 385 | 272 | ...); | 386 | | | 387 | 272 | return result; | 388 | 272 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 168 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 168 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 168 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 168 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 168 | }; | 372 | 168 | AggregateFunctionPtr result = nullptr; | 373 | 168 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 168 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 168 | type == PrimitiveType::TYPE_JSONB) { | 376 | 23 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 23 | } | 378 | | | 379 | 168 | ( | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 168 | result = create.template operator()<AllowedTypes>(); | 383 | 168 | } | 384 | 168 | }(), | 385 | 168 | ...); | 386 | | | 387 | 168 | return result; | 388 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 542 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 542 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 542 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 542 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 542 | }; | 372 | 542 | AggregateFunctionPtr result = nullptr; | 373 | 542 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 542 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 542 | type == PrimitiveType::TYPE_JSONB) { | 376 | 39 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 39 | } | 378 | | | 379 | 542 | ( | 380 | 542 | [&] { | 381 | 542 | if (type == AllowedTypes) { | 382 | 542 | result = create.template operator()<AllowedTypes>(); | 383 | 542 | } | 384 | 542 | }(), | 385 | 542 | ...); | 386 | | | 387 | 542 | return result; | 388 | 542 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; | 372 | 13 | AggregateFunctionPtr result = nullptr; | 373 | 13 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 13 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 13 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 13 | ( | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 13 | }(), | 385 | 13 | ...); | 386 | | | 387 | 13 | return result; | 388 | 13 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 411 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 411 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 411 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 411 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 411 | }; | 372 | 411 | AggregateFunctionPtr result = nullptr; | 373 | 411 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 411 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 411 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 411 | ( | 380 | 411 | [&] { | 381 | 411 | if (type == AllowedTypes) { | 382 | 411 | result = create.template operator()<AllowedTypes>(); | 383 | 411 | } | 384 | 411 | }(), | 385 | 411 | ...); | 386 | | | 387 | 411 | return result; | 388 | 411 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; | 372 | 19 | AggregateFunctionPtr result = nullptr; | 373 | 19 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 19 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 19 | type == PrimitiveType::TYPE_JSONB) { | 376 | 11 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 11 | } | 378 | | | 379 | 19 | ( | 380 | 19 | [&] { | 381 | 19 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 19 | }(), | 385 | 19 | ...); | 386 | | | 387 | 19 | return result; | 388 | 19 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 291 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 291 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 291 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 291 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 291 | }; | 372 | 291 | AggregateFunctionPtr result = nullptr; | 373 | 291 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 291 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 291 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 291 | ( | 380 | 291 | [&] { | 381 | 291 | if (type == AllowedTypes) { | 382 | 291 | result = create.template operator()<AllowedTypes>(); | 383 | 291 | } | 384 | 291 | }(), | 385 | 291 | ...); | 386 | | | 387 | 291 | return result; | 388 | 291 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; | 372 | 26 | AggregateFunctionPtr result = nullptr; | 373 | 26 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 26 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 26 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 26 | ( | 380 | 26 | [&] { | 381 | 26 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 26 | }(), | 385 | 26 | ...); | 386 | | | 387 | 26 | return result; | 388 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 277 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 277 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 277 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 277 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 277 | }; | 372 | 277 | AggregateFunctionPtr result = nullptr; | 373 | 277 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 277 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 277 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 277 | ( | 380 | 277 | [&] { | 381 | 277 | if (type == AllowedTypes) { | 382 | 277 | result = create.template operator()<AllowedTypes>(); | 383 | 277 | } | 384 | 277 | }(), | 385 | 277 | ...); | 386 | | | 387 | 277 | return result; | 388 | 277 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 274 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 274 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 274 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 274 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 274 | }; | 372 | 274 | AggregateFunctionPtr result = nullptr; | 373 | 274 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 275 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 275 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 274 | ( | 380 | 274 | [&] { | 381 | 274 | if (type == AllowedTypes) { | 382 | 274 | result = create.template operator()<AllowedTypes>(); | 383 | 274 | } | 384 | 274 | }(), | 385 | 274 | ...); | 386 | | | 387 | 274 | return result; | 388 | 274 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 7 | }; | 372 | 7 | AggregateFunctionPtr result = nullptr; | 373 | 7 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 7 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 7 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 7 | ( | 380 | 7 | [&] { | 381 | 7 | if (type == AllowedTypes) { | 382 | 7 | result = create.template operator()<AllowedTypes>(); | 383 | 7 | } | 384 | 7 | }(), | 385 | 7 | ...); | 386 | | | 387 | 7 | return result; | 388 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; | 372 | 8 | AggregateFunctionPtr result = nullptr; | 373 | 8 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 8 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 8 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 8 | ( | 380 | 8 | [&] { | 381 | 8 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 8 | }(), | 385 | 8 | ...); | 386 | | | 387 | 8 | return result; | 388 | 8 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 306 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 306 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 306 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 306 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 306 | }; | 372 | 306 | AggregateFunctionPtr result = nullptr; | 373 | 306 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 306 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 306 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 306 | ( | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 306 | result = create.template operator()<AllowedTypes>(); | 383 | 306 | } | 384 | 306 | }(), | 385 | 306 | ...); | 386 | | | 387 | 306 | return result; | 388 | 306 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 321 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 321 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 321 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 321 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 321 | }; | 372 | 321 | AggregateFunctionPtr result = nullptr; | 373 | 321 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 321 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 321 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 321 | ( | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 321 | result = create.template operator()<AllowedTypes>(); | 383 | 321 | } | 384 | 321 | }(), | 385 | 321 | ...); | 386 | | | 387 | 321 | return result; | 388 | 321 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 221 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 221 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 221 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 221 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 221 | }; | 372 | 221 | AggregateFunctionPtr result = nullptr; | 373 | 221 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 221 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 221 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 221 | ( | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 221 | result = create.template operator()<AllowedTypes>(); | 383 | 221 | } | 384 | 221 | }(), | 385 | 221 | ...); | 386 | | | 387 | 221 | return result; | 388 | 221 | } |
|
389 | | |
390 | | template <typename Class, typename... TArgs> |
391 | | static AggregateFunctionPtr create_base_with_result_type(const std::string& name, |
392 | | const DataTypes& argument_types, |
393 | | const DataTypePtr& result_type, |
394 | | const bool result_is_nullable, |
395 | | const AggregateFunctionAttr& attr, |
396 | 3.54k | TArgs&&... args) { |
397 | 3.54k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { |
398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && |
399 | 0 | ResultType < InputType) { |
400 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
401 | 0 | "agg function {} error, arg type {}, result type {}", name, |
402 | 0 | argument_types[define_index]->get_name(), |
403 | 0 | result_type->get_name()); |
404 | 0 | return nullptr; |
405 | 3.54k | } else { |
406 | 3.54k | return creator_without_type::create< |
407 | 3.54k | typename Class::template T<InputType, ResultType>>( |
408 | 3.54k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
409 | 3.54k | } |
410 | 3.54k | }; Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 123 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 123 | } else { | 406 | 123 | return creator_without_type::create< | 407 | 123 | typename Class::template T<InputType, ResultType>>( | 408 | 123 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 123 | } | 410 | 123 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 1.24k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 1.24k | } else { | 406 | 1.24k | return creator_without_type::create< | 407 | 1.24k | typename Class::template T<InputType, ResultType>>( | 408 | 1.24k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 1.24k | } | 410 | 1.24k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 949 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 949 | } else { | 406 | 949 | return creator_without_type::create< | 407 | 949 | typename Class::template T<InputType, ResultType>>( | 408 | 949 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 949 | } | 410 | 949 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 9 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 9 | } else { | 406 | 9 | return creator_without_type::create< | 407 | 9 | typename Class::template T<InputType, ResultType>>( | 408 | 9 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 9 | } | 410 | 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 | 397 | 112 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 112 | } else { | 406 | 112 | return creator_without_type::create< | 407 | 112 | typename Class::template T<InputType, ResultType>>( | 408 | 112 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 112 | } | 410 | 112 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 85 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 85 | } else { | 406 | 85 | return creator_without_type::create< | 407 | 85 | typename Class::template T<InputType, ResultType>>( | 408 | 85 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 85 | } | 410 | 85 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Line | Count | Source | 397 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 2 | } else { | 406 | 2 | return creator_without_type::create< | 407 | 2 | typename Class::template T<InputType, ResultType>>( | 408 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2 | } | 410 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 628 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 628 | } else { | 406 | 628 | return creator_without_type::create< | 407 | 628 | typename Class::template T<InputType, ResultType>>( | 408 | 628 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 628 | } | 410 | 628 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 2 | } else { | 406 | 2 | return creator_without_type::create< | 407 | 2 | typename Class::template T<InputType, ResultType>>( | 408 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2 | } | 410 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 84 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 84 | } else { | 406 | 84 | return creator_without_type::create< | 407 | 84 | typename Class::template T<InputType, ResultType>>( | 408 | 84 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 84 | } | 410 | 84 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 6 | } else { | 406 | 6 | return creator_without_type::create< | 407 | 6 | typename Class::template T<InputType, ResultType>>( | 408 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 6 | } | 410 | 6 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 84 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 84 | } else { | 406 | 84 | return creator_without_type::create< | 407 | 84 | typename Class::template T<InputType, ResultType>>( | 408 | 84 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 84 | } | 410 | 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 | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 46 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 46 | } else { | 406 | 46 | return creator_without_type::create< | 407 | 46 | typename Class::template T<InputType, ResultType>>( | 408 | 46 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 46 | } | 410 | 46 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 4 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 4 | } else { | 406 | 4 | return creator_without_type::create< | 407 | 4 | typename Class::template T<InputType, ResultType>>( | 408 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 4 | } | 410 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Line | Count | Source | 397 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 6 | } else { | 406 | 6 | return creator_without_type::create< | 407 | 6 | typename Class::template T<InputType, ResultType>>( | 408 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 6 | } | 410 | 6 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 1 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 1 | } else { | 406 | 1 | return creator_without_type::create< | 407 | 1 | typename Class::template T<InputType, ResultType>>( | 408 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 1 | } | 410 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 7 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 7 | } else { | 406 | 7 | return creator_without_type::create< | 407 | 7 | typename Class::template T<InputType, ResultType>>( | 408 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 7 | } | 410 | 7 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 12 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 12 | } else { | 406 | 12 | return creator_without_type::create< | 407 | 12 | typename Class::template T<InputType, ResultType>>( | 408 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 12 | } | 410 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 15 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 15 | } else { | 406 | 15 | return creator_without_type::create< | 407 | 15 | typename Class::template T<InputType, ResultType>>( | 408 | 15 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 15 | } | 410 | 15 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 22 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 22 | } else { | 406 | 22 | return creator_without_type::create< | 407 | 22 | typename Class::template T<InputType, ResultType>>( | 408 | 22 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 22 | } | 410 | 22 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 48 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 48 | } else { | 406 | 48 | return creator_without_type::create< | 407 | 48 | typename Class::template T<InputType, ResultType>>( | 408 | 48 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 48 | } | 410 | 48 | }; |
|
411 | 3.54k | AggregateFunctionPtr result = nullptr; |
412 | 3.54k | auto type = argument_types[define_index]->get_primitive_type(); |
413 | | |
414 | 3.54k | ( |
415 | 14.1k | [&] { |
416 | 14.1k | if (type == AllowedTypes) { |
417 | 3.54k | static_assert(is_decimalv3(AllowedTypes)); |
418 | 3.54k | auto call = [&](const auto& type) -> bool { |
419 | 3.54k | using DispatchType = std::decay_t<decltype(type)>; |
420 | 3.54k | result = |
421 | 3.54k | create.template operator()<AllowedTypes, DispatchType::PType>(); |
422 | 3.54k | return true; |
423 | 3.54k | }; Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 123 | auto call = [&](const auto& type) -> bool { | 419 | 123 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 123 | result = | 421 | 123 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 123 | return true; | 423 | 123 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 1.24k | auto call = [&](const auto& type) -> bool { | 419 | 1.24k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1.24k | result = | 421 | 1.24k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1.24k | return true; | 423 | 1.24k | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 949 | auto call = [&](const auto& type) -> bool { | 419 | 949 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 949 | result = | 421 | 949 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 949 | return true; | 423 | 949 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 9 | auto call = [&](const auto& type) -> bool { | 419 | 9 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 9 | result = | 421 | 9 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 9 | return true; | 423 | 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 | 418 | 112 | auto call = [&](const auto& type) -> bool { | 419 | 112 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 112 | result = | 421 | 112 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 112 | return true; | 423 | 112 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 85 | auto call = [&](const auto& type) -> bool { | 419 | 85 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 85 | result = | 421 | 85 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 85 | return true; | 423 | 85 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 2 | auto call = [&](const auto& type) -> bool { | 419 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2 | result = | 421 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2 | return true; | 423 | 2 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 628 | auto call = [&](const auto& type) -> bool { | 419 | 628 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 628 | result = | 421 | 628 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 628 | return true; | 423 | 628 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 2 | auto call = [&](const auto& type) -> bool { | 419 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2 | result = | 421 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2 | return true; | 423 | 2 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 84 | auto call = [&](const auto& type) -> bool { | 419 | 84 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 84 | result = | 421 | 84 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 84 | return true; | 423 | 84 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 6 | auto call = [&](const auto& type) -> bool { | 419 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 6 | result = | 421 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 6 | return true; | 423 | 6 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 84 | auto call = [&](const auto& type) -> bool { | 419 | 84 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 84 | result = | 421 | 84 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 84 | return true; | 423 | 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 | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 46 | auto call = [&](const auto& type) -> bool { | 419 | 46 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 46 | result = | 421 | 46 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 46 | return true; | 423 | 46 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 4 | auto call = [&](const auto& type) -> bool { | 419 | 4 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 4 | result = | 421 | 4 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 4 | return true; | 423 | 4 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 6 | auto call = [&](const auto& type) -> bool { | 419 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 6 | result = | 421 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 6 | return true; | 423 | 6 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 1 | auto call = [&](const auto& type) -> bool { | 419 | 1 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1 | result = | 421 | 1 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1 | return true; | 423 | 1 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 7 | auto call = [&](const auto& type) -> bool { | 419 | 7 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 7 | result = | 421 | 7 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 7 | return true; | 423 | 7 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 12 | auto call = [&](const auto& type) -> bool { | 419 | 12 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 12 | result = | 421 | 12 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 12 | return true; | 423 | 12 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 15 | auto call = [&](const auto& type) -> bool { | 419 | 15 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 15 | result = | 421 | 15 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 15 | return true; | 423 | 15 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 22 | auto call = [&](const auto& type) -> bool { | 419 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 22 | result = | 421 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 22 | return true; | 423 | 22 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 48 | auto call = [&](const auto& type) -> bool { | 419 | 48 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 48 | result = | 421 | 48 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 48 | return true; | 423 | 48 | }; |
|
424 | 3.54k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { |
425 | 0 | throw doris::Exception( |
426 | 0 | ErrorCode::INTERNAL_ERROR, |
427 | 0 | "agg function {} error, arg type {}, result type {}", name, |
428 | 0 | argument_types[define_index]->get_name(), |
429 | 0 | result_type->get_name()); |
430 | 0 | } |
431 | 3.54k | } |
432 | 14.1k | }(), _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 2.45k | [&] { | 416 | 2.45k | if (type == AllowedTypes) { | 417 | 123 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 123 | auto call = [&](const auto& type) -> bool { | 419 | 123 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 123 | result = | 421 | 123 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 123 | return true; | 423 | 123 | }; | 424 | 123 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 123 | } | 432 | 2.45k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 2.45k | [&] { | 416 | 2.45k | if (type == AllowedTypes) { | 417 | 1.25k | static_assert(is_decimalv3(AllowedTypes)); | 418 | 1.25k | auto call = [&](const auto& type) -> bool { | 419 | 1.25k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1.25k | result = | 421 | 1.25k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1.25k | return true; | 423 | 1.25k | }; | 424 | 1.25k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 1.25k | } | 432 | 2.45k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 2.45k | [&] { | 416 | 2.45k | if (type == AllowedTypes) { | 417 | 958 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 958 | auto call = [&](const auto& type) -> bool { | 419 | 958 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 958 | result = | 421 | 958 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 958 | return true; | 423 | 958 | }; | 424 | 958 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 958 | } | 432 | 2.45k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 2.45k | [&] { | 416 | 2.45k | if (type == AllowedTypes) { | 417 | 112 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 112 | auto call = [&](const auto& type) -> bool { | 419 | 112 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 112 | result = | 421 | 112 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 112 | return true; | 423 | 112 | }; | 424 | 112 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 112 | } | 432 | 2.45k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 891 | [&] { | 416 | 891 | if (type == AllowedTypes) { | 417 | 87 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 87 | auto call = [&](const auto& type) -> bool { | 419 | 87 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 87 | result = | 421 | 87 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 87 | return true; | 423 | 87 | }; | 424 | 87 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 87 | } | 432 | 891 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 891 | [&] { | 416 | 891 | if (type == AllowedTypes) { | 417 | 630 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 630 | auto call = [&](const auto& type) -> bool { | 419 | 630 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 630 | result = | 421 | 630 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 630 | return true; | 423 | 630 | }; | 424 | 630 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 630 | } | 432 | 891 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 891 | [&] { | 416 | 891 | if (type == AllowedTypes) { | 417 | 90 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 90 | auto call = [&](const auto& type) -> bool { | 419 | 90 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 90 | result = | 421 | 90 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 90 | return true; | 423 | 90 | }; | 424 | 90 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 90 | } | 432 | 891 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 891 | [&] { | 416 | 891 | if (type == AllowedTypes) { | 417 | 84 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 84 | auto call = [&](const auto& type) -> bool { | 419 | 84 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 84 | result = | 421 | 84 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 84 | return true; | 423 | 84 | }; | 424 | 84 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 84 | } | 432 | 891 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 18 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; | 424 | 18 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 18 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 46 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 46 | auto call = [&](const auto& type) -> bool { | 419 | 46 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 46 | result = | 421 | 46 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 46 | return true; | 423 | 46 | }; | 424 | 46 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 46 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 10 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 10 | auto call = [&](const auto& type) -> bool { | 419 | 10 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 10 | result = | 421 | 10 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 10 | return true; | 423 | 10 | }; | 424 | 10 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 10 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 8 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 8 | auto call = [&](const auto& type) -> bool { | 419 | 8 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 8 | result = | 421 | 8 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 8 | return true; | 423 | 8 | }; | 424 | 8 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 8 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 30 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 30 | auto call = [&](const auto& type) -> bool { | 419 | 30 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 30 | result = | 421 | 30 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 30 | return true; | 423 | 30 | }; | 424 | 30 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 30 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 15 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 15 | auto call = [&](const auto& type) -> bool { | 419 | 15 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 15 | result = | 421 | 15 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 15 | return true; | 423 | 15 | }; | 424 | 15 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 15 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 22 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 22 | auto call = [&](const auto& type) -> bool { | 419 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 22 | result = | 421 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 22 | return true; | 423 | 22 | }; | 424 | 22 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 22 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 48 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 48 | auto call = [&](const auto& type) -> bool { | 419 | 48 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 48 | result = | 421 | 48 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 48 | return true; | 423 | 48 | }; | 424 | 48 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 48 | } | 432 | 70 | }(), |
|
433 | 3.54k | ...); |
434 | | |
435 | 3.54k | return result; |
436 | 3.54k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 2.45k | TArgs&&... args) { | 397 | 2.45k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 2.45k | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 2.45k | ResultType < InputType) { | 400 | 2.45k | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 2.45k | "agg function {} error, arg type {}, result type {}", name, | 402 | 2.45k | argument_types[define_index]->get_name(), | 403 | 2.45k | result_type->get_name()); | 404 | 2.45k | return nullptr; | 405 | 2.45k | } else { | 406 | 2.45k | return creator_without_type::create< | 407 | 2.45k | typename Class::template T<InputType, ResultType>>( | 408 | 2.45k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2.45k | } | 410 | 2.45k | }; | 411 | 2.45k | AggregateFunctionPtr result = nullptr; | 412 | 2.45k | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 2.45k | ( | 415 | 2.45k | [&] { | 416 | 2.45k | if (type == AllowedTypes) { | 417 | 2.45k | static_assert(is_decimalv3(AllowedTypes)); | 418 | 2.45k | auto call = [&](const auto& type) -> bool { | 419 | 2.45k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2.45k | result = | 421 | 2.45k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2.45k | return true; | 423 | 2.45k | }; | 424 | 2.45k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 2.45k | throw doris::Exception( | 426 | 2.45k | ErrorCode::INTERNAL_ERROR, | 427 | 2.45k | "agg function {} error, arg type {}, result type {}", name, | 428 | 2.45k | argument_types[define_index]->get_name(), | 429 | 2.45k | result_type->get_name()); | 430 | 2.45k | } | 431 | 2.45k | } | 432 | 2.45k | }(), | 433 | 2.45k | ...); | 434 | | | 435 | 2.45k | return result; | 436 | 2.45k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 891 | TArgs&&... args) { | 397 | 891 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 891 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 891 | ResultType < InputType) { | 400 | 891 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 891 | "agg function {} error, arg type {}, result type {}", name, | 402 | 891 | argument_types[define_index]->get_name(), | 403 | 891 | result_type->get_name()); | 404 | 891 | return nullptr; | 405 | 891 | } else { | 406 | 891 | return creator_without_type::create< | 407 | 891 | typename Class::template T<InputType, ResultType>>( | 408 | 891 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 891 | } | 410 | 891 | }; | 411 | 891 | AggregateFunctionPtr result = nullptr; | 412 | 891 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 891 | ( | 415 | 891 | [&] { | 416 | 891 | if (type == AllowedTypes) { | 417 | 891 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 891 | auto call = [&](const auto& type) -> bool { | 419 | 891 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 891 | result = | 421 | 891 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 891 | return true; | 423 | 891 | }; | 424 | 891 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 891 | throw doris::Exception( | 426 | 891 | ErrorCode::INTERNAL_ERROR, | 427 | 891 | "agg function {} error, arg type {}, result type {}", name, | 428 | 891 | argument_types[define_index]->get_name(), | 429 | 891 | result_type->get_name()); | 430 | 891 | } | 431 | 891 | } | 432 | 891 | }(), | 433 | 891 | ...); | 434 | | | 435 | 891 | return result; | 436 | 891 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 64 | TArgs&&... args) { | 397 | 64 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 64 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 64 | ResultType < InputType) { | 400 | 64 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 64 | "agg function {} error, arg type {}, result type {}", name, | 402 | 64 | argument_types[define_index]->get_name(), | 403 | 64 | result_type->get_name()); | 404 | 64 | return nullptr; | 405 | 64 | } else { | 406 | 64 | return creator_without_type::create< | 407 | 64 | typename Class::template T<InputType, ResultType>>( | 408 | 64 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 64 | } | 410 | 64 | }; | 411 | 64 | AggregateFunctionPtr result = nullptr; | 412 | 64 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 64 | ( | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 64 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 64 | auto call = [&](const auto& type) -> bool { | 419 | 64 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 64 | result = | 421 | 64 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 64 | return true; | 423 | 64 | }; | 424 | 64 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 64 | throw doris::Exception( | 426 | 64 | ErrorCode::INTERNAL_ERROR, | 427 | 64 | "agg function {} error, arg type {}, result type {}", name, | 428 | 64 | argument_types[define_index]->get_name(), | 429 | 64 | result_type->get_name()); | 430 | 64 | } | 431 | 64 | } | 432 | 64 | }(), | 433 | 64 | ...); | 434 | | | 435 | 64 | return result; | 436 | 64 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 63 | TArgs&&... args) { | 397 | 63 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 63 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 63 | ResultType < InputType) { | 400 | 63 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 63 | "agg function {} error, arg type {}, result type {}", name, | 402 | 63 | argument_types[define_index]->get_name(), | 403 | 63 | result_type->get_name()); | 404 | 63 | return nullptr; | 405 | 63 | } else { | 406 | 63 | return creator_without_type::create< | 407 | 63 | typename Class::template T<InputType, ResultType>>( | 408 | 63 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 63 | } | 410 | 63 | }; | 411 | 63 | AggregateFunctionPtr result = nullptr; | 412 | 63 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 63 | ( | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 63 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 63 | auto call = [&](const auto& type) -> bool { | 419 | 63 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 63 | result = | 421 | 63 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 63 | return true; | 423 | 63 | }; | 424 | 63 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 63 | throw doris::Exception( | 426 | 63 | ErrorCode::INTERNAL_ERROR, | 427 | 63 | "agg function {} error, arg type {}, result type {}", name, | 428 | 63 | argument_types[define_index]->get_name(), | 429 | 63 | result_type->get_name()); | 430 | 63 | } | 431 | 63 | } | 432 | 63 | }(), | 433 | 63 | ...); | 434 | | | 435 | 63 | return result; | 436 | 63 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 70 | TArgs&&... args) { | 397 | 70 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 70 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 70 | ResultType < InputType) { | 400 | 70 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 70 | "agg function {} error, arg type {}, result type {}", name, | 402 | 70 | argument_types[define_index]->get_name(), | 403 | 70 | result_type->get_name()); | 404 | 70 | return nullptr; | 405 | 70 | } else { | 406 | 70 | return creator_without_type::create< | 407 | 70 | typename Class::template T<InputType, ResultType>>( | 408 | 70 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 70 | } | 410 | 70 | }; | 411 | 70 | AggregateFunctionPtr result = nullptr; | 412 | 70 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 70 | ( | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 70 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 70 | auto call = [&](const auto& type) -> bool { | 419 | 70 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 70 | result = | 421 | 70 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 70 | return true; | 423 | 70 | }; | 424 | 70 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 70 | throw doris::Exception( | 426 | 70 | ErrorCode::INTERNAL_ERROR, | 427 | 70 | "agg function {} error, arg type {}, result type {}", name, | 428 | 70 | argument_types[define_index]->get_name(), | 429 | 70 | result_type->get_name()); | 430 | 70 | } | 431 | 70 | } | 432 | 70 | }(), | 433 | 70 | ...); | 434 | | | 435 | 70 | return result; | 436 | 70 | } |
|
437 | | |
438 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
439 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
440 | | const DataTypePtr& result_type, |
441 | | const bool result_is_nullable, |
442 | 31.4k | const AggregateFunctionAttr& attr) { |
443 | 31.4k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, |
444 | 31.4k | result_is_nullable, attr); |
445 | 31.4k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE7creatorINS_26AggregateFunctionSumSimpleEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 14.2k | const AggregateFunctionAttr& attr) { | 443 | 14.2k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 14.2k | result_is_nullable, attr); | 445 | 14.2k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE7creatorINS_16AggregateFuncAvgEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 1.96k | const AggregateFunctionAttr& attr) { | 443 | 1.96k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 1.96k | result_is_nullable, attr); | 445 | 1.96k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE7creatorINS_32AggregateFunctionSumSimpleReaderEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 13.5k | const AggregateFunctionAttr& attr) { | 443 | 13.5k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 13.5k | result_is_nullable, attr); | 445 | 13.5k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_27AggregateFunctionPercentileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 1.31k | const AggregateFunctionAttr& attr) { | 443 | 1.31k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 1.31k | result_is_nullable, attr); | 445 | 1.31k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_32AggregateFunctionPercentileArrayEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 247 | const AggregateFunctionAttr& attr) { | 443 | 247 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 247 | result_is_nullable, attr); | 445 | 247 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_29AggregateFunctionPercentileV2EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 107 | const AggregateFunctionAttr& attr) { | 443 | 107 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 107 | result_is_nullable, attr); | 445 | 107 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_34AggregateFunctionPercentileArrayV2EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 87 | const AggregateFunctionAttr& attr) { | 443 | 87 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 87 | result_is_nullable, attr); | 445 | 87 | } |
|
446 | | |
447 | | // Create agg function with result type from FE. |
448 | | // Currently only used for decimalv3 sum and avg. |
449 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
450 | | static AggregateFunctionPtr creator_with_result_type(const std::string& name, |
451 | | const DataTypes& argument_types, |
452 | | const DataTypePtr& result_type, |
453 | | const bool result_is_nullable, |
454 | 3.54k | const AggregateFunctionAttr& attr) { |
455 | 3.54k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( |
456 | 3.54k | name, argument_types, result_type, result_is_nullable, attr); |
457 | 3.54k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_29AggregateFunctionSumDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 2.45k | const AggregateFunctionAttr& attr) { | 455 | 2.45k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 2.45k | name, argument_types, result_type, result_is_nullable, attr); | 457 | 2.45k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_25AggregateFuncAvgDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 891 | const AggregateFunctionAttr& attr) { | 455 | 891 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 891 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 891 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 64 | const AggregateFunctionAttr& attr) { | 455 | 64 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 64 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 64 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 63 | const AggregateFunctionAttr& attr) { | 455 | 63 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 63 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 63 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 70 | const AggregateFunctionAttr& attr) { | 455 | 70 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 70 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 70 | } |
|
458 | | |
459 | | template <template <PrimitiveType> class AggregateFunctionTemplate, typename... TArgs> |
460 | 28.4k | static AggregateFunctionPtr create(TArgs&&... args) { |
461 | 28.4k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); |
462 | 28.4k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_32AggregateFunctionDistinctNumericEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrERKS6_INS_18IAggregateFunctionEEEEESK_DpOT0_ Line | Count | Source | 460 | 1.65k | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 1.65k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 1.65k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE6createINS_36AggregateFunctionApproxCountDistinctEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrEEEES6_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 25.9k | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 25.9k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 25.9k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS5_2EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 306 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 306 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 306 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS5_3EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 321 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 321 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 321 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS5_4EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 221 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 221 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 221 | } |
|
463 | | |
464 | | template <template <typename> class AggregateFunctionTemplate, |
465 | | template <PrimitiveType> class Data> |
466 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
467 | | const DataTypePtr& result_type, |
468 | | const bool result_is_nullable, |
469 | | const AggregateFunctionAttr& attr) { |
470 | | return create_base<CurryData<AggregateFunctionTemplate, Data>>(argument_types, |
471 | | result_is_nullable, attr); |
472 | | } |
473 | | |
474 | | template <template <typename> class AggregateFunctionTemplate, |
475 | | template <PrimitiveType> class Data, typename... TArgs> |
476 | 2.40k | static AggregateFunctionPtr create(TArgs&&... args) { |
477 | 2.40k | return create_base<CurryData<AggregateFunctionTemplate, Data>>( |
478 | 2.40k | std::forward<TArgs>(args)...); |
479 | 2.40k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 12 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 12 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 12 | std::forward<TArgs>(args)...); | 479 | 12 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_9ImplArrayEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 267 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 267 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 267 | std::forward<TArgs>(args)...); | 479 | 267 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 2 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 2 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 2 | std::forward<TArgs>(args)...); | 479 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_10ImplWeightEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 255 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 255 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 255 | std::forward<TArgs>(args)...); | 479 | 255 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 3 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 3 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 3 | std::forward<TArgs>(args)...); | 479 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 11 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 11 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 11 | std::forward<TArgs>(args)...); | 479 | 11 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 272 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 272 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 272 | std::forward<TArgs>(args)...); | 479 | 272 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE6createINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 168 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 168 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 168 | std::forward<TArgs>(args)...); | 479 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE6createINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 542 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 542 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 542 | std::forward<TArgs>(args)...); | 479 | 542 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_14CorrMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 291 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 291 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 291 | std::forward<TArgs>(args)...); | 479 | 291 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 26 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 26 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 26 | std::forward<TArgs>(args)...); | 479 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_8SampDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 279 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 279 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 279 | std::forward<TArgs>(args)...); | 479 | 279 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_7PopDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 276 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 276 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 276 | std::forward<TArgs>(args)...); | 479 | 276 | } |
|
480 | | |
481 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
482 | | template <PrimitiveType> class Impl> |
483 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
484 | | const DataTypePtr& result_type, |
485 | | const bool result_is_nullable, |
486 | | const AggregateFunctionAttr& attr) { |
487 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
488 | | argument_types, result_is_nullable, attr); |
489 | | } |
490 | | |
491 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
492 | | template <PrimitiveType> class Impl, typename... TArgs> |
493 | | static AggregateFunctionPtr create(TArgs&&... args) { |
494 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
495 | | std::forward<TArgs>(args)...); |
496 | | } |
497 | | |
498 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
499 | | template <PrimitiveType> class Data> |
500 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
501 | | const DataTypePtr& result_type, |
502 | | const bool result_is_nullable, |
503 | 1.19k | const AggregateFunctionAttr& attr) { |
504 | 1.19k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
505 | 1.19k | argument_types, result_is_nullable, attr); |
506 | 1.19k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 397 | const AggregateFunctionAttr& attr) { | 504 | 397 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 397 | argument_types, result_is_nullable, attr); | 506 | 397 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 394 | const AggregateFunctionAttr& attr) { | 504 | 394 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 394 | argument_types, result_is_nullable, attr); | 506 | 394 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 393 | const AggregateFunctionAttr& attr) { | 504 | 393 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 393 | argument_types, result_is_nullable, attr); | 506 | 393 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 7 | const AggregateFunctionAttr& attr) { | 504 | 7 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 7 | argument_types, result_is_nullable, attr); | 506 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 8 | const AggregateFunctionAttr& attr) { | 504 | 8 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 8 | argument_types, result_is_nullable, attr); | 506 | 8 | } |
|
507 | | |
508 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
509 | | template <PrimitiveType> class Data, typename... TArgs> |
510 | 1.71k | static AggregateFunctionPtr create(TArgs&&... args) { |
511 | 1.71k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
512 | 1.71k | std::forward<TArgs>(args)...); |
513 | 1.71k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE6createINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 1.27k | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 1.27k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 1.27k | std::forward<TArgs>(args)...); | 513 | 1.27k | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE6createINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 13 | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 13 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 13 | std::forward<TArgs>(args)...); | 513 | 13 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 412 | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 412 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 412 | std::forward<TArgs>(args)...); | 513 | 412 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE23ELS1_10ELS1_13ELS1_41EEE6createINS_40AggregateFunctionDataSketchesHllUnionAggENS_30AggregateFunctionHllSketchDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 19 | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 19 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 19 | std::forward<TArgs>(args)...); | 513 | 19 | } |
|
514 | | }; |
515 | | |
516 | | template <PrimitiveType... AllowedTypes> |
517 | | using creator_with_type_list = creator_with_type_list_base<0, AllowedTypes...>; |
518 | | |
519 | | } // namespace doris |