Coverage Report

Created: 2026-03-13 12:56

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
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
172k
    do {                                                                                           \
42
172k
        constexpr bool _is_new_serialized_type =                                                   \
43
172k
                !std::is_same_v<decltype(&FunctionTemplate::get_serialized_type),                  \
44
172k
                                decltype(&IAggregateFunction::get_serialized_type)>;               \
45
172k
        if constexpr (_is_new_serialized_type) {                                                   \
46
107k
            static_assert(!std::is_same_v<decltype(&FunctionTemplate::serialize_to_column),        \
47
107k
                                          decltype(&IAggregateFunctionHelper<                      \
48
107k
                                                   FunctionTemplate>::serialize_to_column)>,       \
49
107k
                          "need to override serialize_to_column");                                 \
50
107k
            static_assert(                                                                         \
51
107k
                    !std::is_same_v<                                                               \
52
107k
                            decltype(&FunctionTemplate::streaming_agg_serialize_to_column),        \
53
107k
                            decltype(&IAggregateFunction::streaming_agg_serialize_to_column)>,     \
54
107k
                    "need to override "                                                            \
55
107k
                    "streaming_agg_serialize_to_column");                                          \
56
107k
            static_assert(!std::is_same_v<decltype(&FunctionTemplate::deserialize_and_merge_vec),  \
57
107k
                                          decltype(&IAggregateFunctionHelper<                      \
58
107k
                                                   FunctionTemplate>::deserialize_and_merge_vec)>, \
59
107k
                          "need to override deserialize_and_merge_vec");                           \
60
107k
            static_assert(                                                                         \
61
107k
                    !std::is_same_v<                                                               \
62
107k
                            decltype(&FunctionTemplate::deserialize_and_merge_vec_selected),       \
63
107k
                            decltype(&IAggregateFunctionHelper<                                    \
64
107k
                                     FunctionTemplate>::deserialize_and_merge_vec_selected)>,      \
65
107k
                    "need to override "                                                            \
66
107k
                    "deserialize_and_merge_vec_selected");                                         \
67
107k
            static_assert(                                                                         \
68
107k
                    !std::is_same_v<decltype(&FunctionTemplate::serialize_without_key_to_column),  \
69
107k
                                    decltype(&IAggregateFunctionHelper<                            \
70
107k
                                             FunctionTemplate>::serialize_without_key_to_column)>, \
71
107k
                    "need to override serialize_without_key_to_column");                           \
72
107k
            static_assert(                                                                         \
73
107k
                    !std::is_same_v<                                                               \
74
107k
                            decltype(&FunctionTemplate::deserialize_and_merge_from_column_range),  \
75
107k
                            decltype(&IAggregateFunctionHelper<                                    \
76
107k
                                     FunctionTemplate>::deserialize_and_merge_from_column)>,       \
77
107k
                    "need to override "                                                            \
78
107k
                    "deserialize_and_merge_from_column");                                          \
79
107k
        }                                                                                          \
80
172k
    } while (false)
81
82
namespace doris {
83
#include "common/compile_check_begin.h"
84
85
struct creator_without_type {
86
    template <bool multi_arguments, bool f, typename T>
87
    using NullableT = std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>,
88
                                         AggregateFunctionNullUnaryInline<T, f>>;
89
90
    template <bool multi_arguments, bool f, typename T>
91
    using NullableV2T =
92
            std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>,
93
                               AggregateFunctionNullUnaryInlineV2<T, f>>;
94
95
    template <typename AggregateFunctionTemplate>
96
    static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types,
97
                                        const DataTypePtr& result_type,
98
                                        const bool result_is_nullable,
99
6.90k
                                        const AggregateFunctionAttr& attr) {
100
6.90k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
6.90k
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
6.90k
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
2.31k
                                        const AggregateFunctionAttr& attr) {
100
2.31k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
2.31k
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
2.31k
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
1.15k
                                        const AggregateFunctionAttr& attr) {
100
1.15k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
1.15k
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
1.15k
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
458
                                        const AggregateFunctionAttr& attr) {
100
458
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
458
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
458
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
1.30k
                                        const AggregateFunctionAttr& attr) {
100
1.30k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
1.30k
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
1.30k
    }
_ZN5doris20creator_without_type7creatorINS_19WindowFunctionNTileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
15
                                        const AggregateFunctionAttr& attr) {
100
15
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
15
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
15
    }
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionRetentionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
454
                                        const AggregateFunctionAttr& attr) {
100
454
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
454
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
454
    }
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
581
                                        const AggregateFunctionAttr& attr) {
100
581
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
581
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
581
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
590
                                        const AggregateFunctionAttr& attr) {
100
590
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
590
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
590
    }
_ZN5doris20creator_without_type7creatorINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
7
                                        const AggregateFunctionAttr& attr) {
100
7
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
7
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
7
    }
_ZN5doris20creator_without_type7creatorINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
99
24
                                        const AggregateFunctionAttr& attr) {
100
24
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
101
24
        return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr);
102
24
    }
103
104
    template <typename AggregateFunctionTemplate, typename... TArgs>
105
    static AggregateFunctionPtr create(const DataTypes& argument_types_,
106
                                       const bool result_is_nullable,
107
91.6k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
91.6k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
70.8k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
42.0k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
42.0k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
42.0k
            } else {
114
28.8k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
28.8k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
28.8k
            }
117
70.8k
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
7.73k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
6.62k
                return create_multi_arguments<AggregateFunctionTemplate>(
120
6.62k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
6.62k
            } else {
122
1.10k
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1.10k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1.10k
            }
125
13.0k
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
13.0k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
7.01k
                return create_varargs<AggregateFunctionTemplate>(
128
7.01k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
7.01k
            } else {
130
6.02k
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
6.02k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
6.02k
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
91.6k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
894
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
894
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
894
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
894
                return create_unary_arguments<AggregateFunctionTemplate>(
112
894
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
894
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
82
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
82
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
82
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
82
                return create_unary_arguments<AggregateFunctionTemplate>(
112
82
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
82
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
30
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
30
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
30
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
30
                return create_unary_arguments<AggregateFunctionTemplate>(
112
30
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
30
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.18k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.18k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.18k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.18k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.18k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.18k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
18
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
18
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
18
                return create_unary_arguments<AggregateFunctionTemplate>(
112
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2.11k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2.11k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
2.11k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
2.11k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
2.11k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2.11k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
9
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
9
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
9
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
9
                return create_unary_arguments<AggregateFunctionTemplate>(
112
9
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
9
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
156
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
156
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
156
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
156
                return create_unary_arguments<AggregateFunctionTemplate>(
112
156
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
156
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.52k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.52k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.52k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.52k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.52k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.52k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
86
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
86
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
86
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
86
                return create_unary_arguments<AggregateFunctionTemplate>(
112
86
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
86
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
7.62k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
7.62k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
7.62k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
7.62k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
7.62k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
7.62k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
5.26k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
5.26k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
5.26k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
5.26k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
5.26k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
5.26k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.20k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.20k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.20k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.20k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.20k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.20k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
70
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
70
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
70
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
70
                return create_unary_arguments<AggregateFunctionTemplate>(
112
70
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
70
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2.27k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2.27k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
2.27k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
2.27k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
2.27k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2.27k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
49
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
49
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
49
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
49
                return create_unary_arguments<AggregateFunctionTemplate>(
112
49
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
49
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
8
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
8
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
8
                return create_unary_arguments<AggregateFunctionTemplate>(
112
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
501
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
501
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
501
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
501
                return create_unary_arguments<AggregateFunctionTemplate>(
112
501
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
501
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
9
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
9
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
9
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
9
                return create_unary_arguments<AggregateFunctionTemplate>(
112
9
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
9
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
93
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
93
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
93
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
93
                return create_unary_arguments<AggregateFunctionTemplate>(
112
93
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
93
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
24
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
24
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
24
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
24
                return create_unary_arguments<AggregateFunctionTemplate>(
112
24
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
24
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
96
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
96
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
96
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
96
                return create_unary_arguments<AggregateFunctionTemplate>(
112
96
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
96
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
102
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
102
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
102
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
102
                return create_unary_arguments<AggregateFunctionTemplate>(
112
102
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
102
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
34
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
34
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
34
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
34
                return create_unary_arguments<AggregateFunctionTemplate>(
112
34
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
34
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.18k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.18k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.18k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.18k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.18k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.18k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
427
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
427
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
427
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
427
                return create_unary_arguments<AggregateFunctionTemplate>(
112
427
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
427
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
2
                return create_unary_arguments<AggregateFunctionTemplate>(
112
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
205
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
205
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
205
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
205
                return create_unary_arguments<AggregateFunctionTemplate>(
112
205
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
205
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
16
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
16
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
16
            } else {
130
16
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
16
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
16
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
16
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
715
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
715
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
715
            } else {
130
715
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
715
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
715
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
715
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
58
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
58
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
58
            } else {
130
58
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
58
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
58
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
58
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
1
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
1
            } else {
130
1
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
1
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
13
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
13
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
13
            } else {
130
13
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
13
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
13
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
13
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
563
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
563
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
563
            } else {
130
563
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
563
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
563
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
563
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
4
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
4
            } else {
130
4
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
4
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
10
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
10
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
10
            } else {
130
10
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
10
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
10
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
10
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
36
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
36
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
36
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
36
                return create_unary_arguments<AggregateFunctionTemplate>(
112
36
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
36
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
33
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
33
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
33
                return create_unary_arguments<AggregateFunctionTemplate>(
112
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
467
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
467
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
467
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
467
                return create_unary_arguments<AggregateFunctionTemplate>(
112
467
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
467
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
33
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
33
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
33
                return create_unary_arguments<AggregateFunctionTemplate>(
112
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
33
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
33
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
33
                return create_unary_arguments<AggregateFunctionTemplate>(
112
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
470
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
470
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
470
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
470
                return create_unary_arguments<AggregateFunctionTemplate>(
112
470
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
470
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
33
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
33
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
33
                return create_unary_arguments<AggregateFunctionTemplate>(
112
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
33
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
33
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
33
                return create_unary_arguments<AggregateFunctionTemplate>(
112
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
470
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
470
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
470
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
470
                return create_unary_arguments<AggregateFunctionTemplate>(
112
470
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
470
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
35
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
35
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
35
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
35
                return create_unary_arguments<AggregateFunctionTemplate>(
112
35
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
35
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2.31k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2.31k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
2.31k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
2.31k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
2.31k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2.31k
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.15k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.15k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.15k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.15k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.15k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.15k
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
458
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
458
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
458
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
458
                return create_unary_arguments<AggregateFunctionTemplate>(
112
458
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
458
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
457
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
457
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
457
            } else {
114
457
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
457
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
457
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
457
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
4
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
4
            } else {
114
4
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
4
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
6
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
6
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
6
            } else {
114
6
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
6
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
6
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
6
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
6
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
6
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
6
            } else {
114
6
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
6
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
6
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
6
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
18
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
18
            } else {
114
18
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
18
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
15
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
15
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
15
            } else {
114
15
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
15
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
15
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
15
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
23
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
23
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
23
            } else {
114
23
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
23
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
23
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
23
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
4
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
4
            } else {
114
4
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
4
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
4
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
4
            } else {
114
4
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
4
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
16
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
16
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
16
            } else {
114
16
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
16
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
16
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
16
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
2
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
2
            } else {
114
2
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
2
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
12
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
12
            } else {
114
12
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
12
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2.53k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2.53k
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2.53k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2.53k
                return create_varargs<AggregateFunctionTemplate>(
128
2.53k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2.53k
    }
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
674
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
674
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
674
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
674
                return create_varargs<AggregateFunctionTemplate>(
128
674
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
674
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
925
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
925
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
925
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
925
                return create_varargs<AggregateFunctionTemplate>(
128
925
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
925
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
358
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
358
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
358
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
358
                return create_varargs<AggregateFunctionTemplate>(
128
358
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
358
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
894
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
894
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
894
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
894
                return create_varargs<AggregateFunctionTemplate>(
128
894
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
894
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
27
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
27
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
27
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
27
                return create_varargs<AggregateFunctionTemplate>(
128
27
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
27
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
921
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
921
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
921
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
921
                return create_unary_arguments<AggregateFunctionTemplate>(
112
921
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
921
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
980
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
980
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
980
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
980
                return create_unary_arguments<AggregateFunctionTemplate>(
112
980
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
980
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.20k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.20k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.20k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.20k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.20k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.20k
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.46k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.46k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.46k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.46k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.46k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.46k
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.30k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.30k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.30k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.30k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.30k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.30k
    }
_ZN5doris20creator_without_type6createINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
15
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
15
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
15
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
15
                return create_unary_arguments<AggregateFunctionTemplate>(
112
15
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
15
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
50
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
50
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
50
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
50
                return create_unary_arguments<AggregateFunctionTemplate>(
112
50
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
50
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
38
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
38
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
38
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
38
                return create_unary_arguments<AggregateFunctionTemplate>(
112
38
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
38
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
46
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
46
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
46
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
46
                return create_unary_arguments<AggregateFunctionTemplate>(
112
46
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
46
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
38
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
38
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
38
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
38
                return create_unary_arguments<AggregateFunctionTemplate>(
112
38
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
38
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
38
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
38
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
38
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
38
                return create_unary_arguments<AggregateFunctionTemplate>(
112
38
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
38
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
42
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
42
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
42
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
42
                return create_unary_arguments<AggregateFunctionTemplate>(
112
42
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
42
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
22
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
22
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
22
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
22
                return create_unary_arguments<AggregateFunctionTemplate>(
112
22
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
22
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
47
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
47
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
47
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
47
                return create_unary_arguments<AggregateFunctionTemplate>(
112
47
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
47
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
24
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
24
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
24
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
24
                return create_unary_arguments<AggregateFunctionTemplate>(
112
24
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
24
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
16
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
16
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
16
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
16
                return create_unary_arguments<AggregateFunctionTemplate>(
112
16
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
16
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
16
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
16
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
16
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
16
                return create_unary_arguments<AggregateFunctionTemplate>(
112
16
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
16
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
40
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
40
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
40
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
40
                return create_unary_arguments<AggregateFunctionTemplate>(
112
40
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
40
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
125
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
125
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
125
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
125
                return create_unary_arguments<AggregateFunctionTemplate>(
112
125
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
125
    }
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.09k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.09k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.09k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.09k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.09k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.09k
    }
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.15k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.15k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.15k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.15k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.15k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.15k
    }
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.11k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.11k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
1.11k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
1.11k
                return create_unary_arguments<AggregateFunctionTemplate>(
112
1.11k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.11k
    }
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
626
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
626
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
626
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
626
                return create_unary_arguments<AggregateFunctionTemplate>(
112
626
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
626
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
475
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
475
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
475
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
475
                return create_multi_arguments<AggregateFunctionTemplate>(
120
475
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
475
    }
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
41
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
41
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
41
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
41
                return create_multi_arguments<AggregateFunctionTemplate>(
120
41
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
41
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
4
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
4
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
4
                return create_multi_arguments<AggregateFunctionTemplate>(
120
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
3
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
3
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
3
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
3
                return create_multi_arguments<AggregateFunctionTemplate>(
120
3
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
1
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
1
                return create_multi_arguments<AggregateFunctionTemplate>(
120
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
434
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
434
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
434
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
434
                return create_multi_arguments<AggregateFunctionTemplate>(
120
434
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
434
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
1
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
1
                return create_multi_arguments<AggregateFunctionTemplate>(
120
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
434
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
434
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
434
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
434
                return create_multi_arguments<AggregateFunctionTemplate>(
120
434
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
434
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
60
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
60
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
60
            } else {
114
60
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
60
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
60
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
60
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
265
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
265
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
265
            } else {
114
265
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
265
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
265
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
265
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
190
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
190
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
190
            } else {
114
190
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
190
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
190
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
190
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
11.2k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
11.2k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
11.2k
            } else {
114
11.2k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
11.2k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
11.2k
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
11.2k
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
3.83k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
3.83k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
3.83k
            } else {
114
3.83k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
3.83k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
3.83k
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
3.83k
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
212
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
212
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
212
            } else {
114
212
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
212
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
212
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
212
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
66
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
66
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
66
            } else {
114
66
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
66
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
66
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
66
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
90
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
90
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
90
            } else {
114
90
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
90
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
90
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
90
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
56
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
56
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
56
            } else {
114
56
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
56
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
56
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
56
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.96k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
1.96k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
1.96k
            } else {
114
1.96k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
1.96k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
1.96k
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.96k
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
712
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
712
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
712
            } else {
114
712
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
712
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
712
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
712
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
26
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
26
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
26
            } else {
114
26
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
26
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
26
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
26
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4.41k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
4.41k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
4.41k
            } else {
114
4.41k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
4.41k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
4.41k
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4.41k
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4.56k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
4.56k
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
4.56k
            } else {
114
4.56k
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
4.56k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
4.56k
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4.56k
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
464
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
464
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
464
            } else {
114
464
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
464
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
464
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
464
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
8
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
8
            } else {
114
8
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
8
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
8
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
8
            } else {
114
8
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
8
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
750
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
750
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
750
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
750
                return create_multi_arguments<AggregateFunctionTemplate>(
120
750
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
750
    }
_ZN5doris20creator_without_type6createINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
46
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
46
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
46
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
46
                return create_multi_arguments<AggregateFunctionTemplate>(
120
46
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
46
    }
_ZN5doris20creator_without_type6createINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
23
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
23
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
23
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
23
                return create_multi_arguments<AggregateFunctionTemplate>(
120
23
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
23
    }
_ZN5doris20creator_without_type6createINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
22
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
22
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
22
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
22
                return create_multi_arguments<AggregateFunctionTemplate>(
120
22
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
22
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
8
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
8
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
8
                return create_multi_arguments<AggregateFunctionTemplate>(
120
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
20
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
20
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
20
                return create_multi_arguments<AggregateFunctionTemplate>(
120
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
31
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
31
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
31
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
31
                return create_multi_arguments<AggregateFunctionTemplate>(
120
31
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
31
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1.76k
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1.76k
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
1.76k
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
1.76k
                return create_multi_arguments<AggregateFunctionTemplate>(
120
1.76k
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1.76k
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
2
                return create_multi_arguments<AggregateFunctionTemplate>(
120
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
11
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
11
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
11
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
11
                return create_multi_arguments<AggregateFunctionTemplate>(
120
11
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
11
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
4
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
4
            } else {
122
4
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
4
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
6
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
6
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
6
            } else {
122
6
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
6
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
6
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
6
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
468
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
468
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
468
            } else {
122
468
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
468
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
468
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
468
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
12
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
12
            } else {
122
12
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
12
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
4
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
4
            } else {
122
4
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
4
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
2
            } else {
122
2
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
2
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
13
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
13
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
13
            } else {
122
13
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
13
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
13
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
13
    }
_ZN5doris20creator_without_type6createINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
530
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
530
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
530
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
530
                return create_multi_arguments<AggregateFunctionTemplate>(
120
530
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
530
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
454
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
454
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
454
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
454
                return create_varargs<AggregateFunctionTemplate>(
128
454
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
454
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
3
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
3
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
3
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
3
                return create_varargs<AggregateFunctionTemplate>(
128
3
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
11
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
11
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
11
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
11
                return create_varargs<AggregateFunctionTemplate>(
128
11
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
11
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
20
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
20
                return create_varargs<AggregateFunctionTemplate>(
128
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
10
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
10
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
10
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
10
                return create_varargs<AggregateFunctionTemplate>(
128
10
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
10
    }
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
436
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
436
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
436
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
436
                return create_varargs<AggregateFunctionTemplate>(
128
436
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
436
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
11
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
11
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
11
            } else {
130
11
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
11
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
11
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
11
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
14
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
14
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
14
            } else {
130
14
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
14
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
14
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
14
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
9
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
9
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
9
            } else {
130
9
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
9
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
9
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
9
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
13
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
13
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
13
            } else {
130
13
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
13
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
13
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
13
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
450
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
450
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
450
            } else {
130
450
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
450
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
450
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
450
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
920
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
920
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
920
            } else {
130
920
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
920
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
920
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
920
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
10
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
10
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
10
            } else {
130
10
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
10
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
10
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
10
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
15
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
15
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
15
            } else {
130
15
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
15
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
15
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
15
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
10
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
10
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
10
            } else {
130
10
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
10
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
10
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
10
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
4
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
4
            } else {
130
4
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
4
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
2
            } else {
130
2
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
2
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
6
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
6
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
6
            } else {
130
6
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
6
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
6
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
6
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
25
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
25
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
25
            } else {
130
25
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
25
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
25
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
25
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
17
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
17
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
17
            } else {
130
17
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
17
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
17
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
17
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
23
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
23
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
23
            } else {
130
23
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
23
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
23
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
23
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
195
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
195
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
195
            } else {
130
195
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
195
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
195
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
195
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
61
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
61
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
61
            } else {
130
61
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
61
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
61
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
61
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
524
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
524
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
524
            } else {
130
524
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
524
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
524
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
524
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
475
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
475
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
475
            } else {
130
475
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
475
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
475
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
475
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
9
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
9
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
9
            } else {
130
9
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
9
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
9
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
9
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
9
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
9
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
9
            } else {
130
9
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
9
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
9
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
9
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
33
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
33
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
33
            } else {
130
33
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
33
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
33
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
33
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
32
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
32
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
32
            } else {
130
32
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
32
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
32
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
32
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
95
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
95
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
95
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
95
                return create_varargs<AggregateFunctionTemplate>(
128
95
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
95
    }
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
451
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
451
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
451
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
451
                return create_varargs<AggregateFunctionTemplate>(
128
451
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
451
    }
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
91
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
91
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
91
            } else {
130
91
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
91
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
91
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
91
    }
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
453
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
453
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
453
            } else {
130
453
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
453
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
453
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
453
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
581
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
581
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
581
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
581
                return create_multi_arguments<AggregateFunctionTemplate>(
120
581
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
581
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
5
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
5
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
5
            } else {
130
5
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
5
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
5
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
5
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
12
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
12
            } else {
130
12
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
12
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
8
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
8
            } else {
130
8
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
8
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
18
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
18
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
18
            } else {
130
18
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
18
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
18
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
43
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
43
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
43
            } else {
130
43
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
43
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
43
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
43
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
19
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
19
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
19
            } else {
130
19
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
19
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
19
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
19
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
19
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
19
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
19
            } else {
130
19
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
19
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
19
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
19
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
4
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
4
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
4
            } else {
130
4
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
4
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
4
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
4
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
20
            } else {
130
20
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
20
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
20
            } else {
130
20
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
20
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
457
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
457
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
457
            } else {
130
457
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
457
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
457
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
457
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
21
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
21
            } else {
130
21
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
21
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
20
            } else {
130
20
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
20
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
20
            } else {
130
20
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
20
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
20
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
20
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
20
            } else {
130
20
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
20
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
20
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
20
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
19
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
19
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
19
            } else {
130
19
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
19
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
19
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
19
    }
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
39
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
39
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
39
            } else {
130
39
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
39
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
39
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
39
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
38
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
38
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
38
            } else {
130
38
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
38
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
38
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
38
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
38
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
38
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
38
            } else {
130
38
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
38
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
38
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
38
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
3
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
3
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
3
            } else {
122
3
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
3
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
3
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
3
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
1
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
1
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
1
            } else {
122
1
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
1
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
1
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
1
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
453
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
453
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
453
            } else {
122
453
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
453
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
453
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
453
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
2
            } else {
122
2
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
2
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
21
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
21
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
21
            } else {
122
21
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
21
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
21
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
21
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
2
            } else {
122
2
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
2
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
2
            } else {
122
2
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
2
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
2
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
2
            } else {
122
2
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
2
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
590
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
590
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
590
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
590
                return create_unary_arguments<AggregateFunctionTemplate>(
112
590
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
590
    }
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
468
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
468
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
468
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
468
                return create_multi_arguments<AggregateFunctionTemplate>(
120
468
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
468
    }
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
26
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
26
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
26
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
26
                return create_multi_arguments<AggregateFunctionTemplate>(
120
26
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
26
    }
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
455
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
455
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
455
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
455
                return create_multi_arguments<AggregateFunctionTemplate>(
120
455
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
455
    }
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
452
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
452
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
452
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
452
                return create_multi_arguments<AggregateFunctionTemplate>(
120
452
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
452
    }
_ZN5doris20creator_without_type6createINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
13
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
13
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
13
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
13
                return create_multi_arguments<AggregateFunctionTemplate>(
120
13
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
13
    }
_ZN5doris20creator_without_type6createINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
12
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
12
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
12
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
12
                return create_multi_arguments<AggregateFunctionTemplate>(
120
12
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
12
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
7
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
7
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
7
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
7
                return create_unary_arguments<AggregateFunctionTemplate>(
112
7
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
7
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
8
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
8
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
8
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
8
                return create_unary_arguments<AggregateFunctionTemplate>(
112
8
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
8
    }
_ZN5doris20creator_without_type6createINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
7
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
7
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
7
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
7
                return create_unary_arguments<AggregateFunctionTemplate>(
112
7
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
7
    }
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
24
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
24
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
24
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
24
                return create_unary_arguments<AggregateFunctionTemplate>(
112
24
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
                return create_varargs<AggregateFunctionTemplate>(
128
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
24
    }
_ZN5doris20creator_without_type6createINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
2
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
2
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
2
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
2
                return create_varargs<AggregateFunctionTemplate>(
128
2
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
2
    }
_ZN5doris20creator_without_type6createINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
107
110
                                       const AggregateFunctionAttr& attr, TArgs&&... args) {
108
        // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations.
109
        if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) {
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
111
                return create_unary_arguments<AggregateFunctionTemplate>(
112
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
113
            } else {
114
                return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>(
115
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
116
            }
117
        } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) {
118
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
119
                return create_multi_arguments<AggregateFunctionTemplate>(
120
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
121
            } else {
122
                return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>(
123
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
124
            }
125
110
        } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) {
126
110
            if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) {
127
110
                return create_varargs<AggregateFunctionTemplate>(
128
110
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
129
            } else {
130
                return create_varargs_return_not_nullable<AggregateFunctionTemplate>(
131
                        argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...);
132
            }
133
        } else {
134
            static_assert(std::is_same_v<AggregateFunctionTemplate, void>,
135
                          "AggregateFunctionTemplate must have tag (UnaryExpression, "
136
                          "MultiExpression or VarargsExpression) , (NullableAggregateFunction , "
137
                          "NonNullableAggregateFunction)");
138
        }
139
0
        return nullptr;
140
110
    }
141
142
    // dispatch
143
    template <typename AggregateFunctionTemplate, typename... TArgs>
144
    static AggregateFunctionPtr create_varargs(const DataTypes& argument_types_,
145
                                               const bool result_is_nullable,
146
7.00k
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
7.00k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
7.00k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
7.00k
        if (have_nullable(argument_types_)) {
150
5.74k
            std::visit(
151
5.74k
                    [&](auto multi_arguments, auto result_is_nullable) {
152
5.74k
                        if (attr.enable_aggregate_function_null_v2) {
153
1.04k
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
1.04k
                                                         AggregateFunctionTemplate>(
155
1.04k
                                    result.release(), argument_types_, attr.is_window_function));
156
4.70k
                        } else {
157
4.70k
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
4.70k
                                                       AggregateFunctionTemplate>(
159
4.70k
                                    result.release(), argument_types_, attr.is_window_function));
160
4.70k
                        }
161
5.74k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_
_ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_
Line
Count
Source
151
1.56k
                    [&](auto multi_arguments, auto result_is_nullable) {
152
1.56k
                        if (attr.enable_aggregate_function_null_v2) {
153
57
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
57
                                                         AggregateFunctionTemplate>(
155
57
                                    result.release(), argument_types_, attr.is_window_function));
156
1.50k
                        } else {
157
1.50k
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
1.50k
                                                       AggregateFunctionTemplate>(
159
1.50k
                                    result.release(), argument_types_, attr.is_window_function));
160
1.50k
                        }
161
1.56k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_
_ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_
Line
Count
Source
151
629
                    [&](auto multi_arguments, auto result_is_nullable) {
152
629
                        if (attr.enable_aggregate_function_null_v2) {
153
629
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
629
                                                         AggregateFunctionTemplate>(
155
629
                                    result.release(), argument_types_, attr.is_window_function));
156
629
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
629
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_
Line
Count
Source
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_
Line
Count
Source
151
435
                    [&](auto multi_arguments, auto result_is_nullable) {
152
435
                        if (attr.enable_aggregate_function_null_v2) {
153
13
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
13
                                                         AggregateFunctionTemplate>(
155
13
                                    result.release(), argument_types_, attr.is_window_function));
156
422
                        } else {
157
422
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
422
                                                       AggregateFunctionTemplate>(
159
422
                                    result.release(), argument_types_, attr.is_window_function));
160
422
                        }
161
435
                    },
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_
Line
Count
Source
151
445
                    [&](auto multi_arguments, auto result_is_nullable) {
152
445
                        if (attr.enable_aggregate_function_null_v2) {
153
28
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
28
                                                         AggregateFunctionTemplate>(
155
28
                                    result.release(), argument_types_, attr.is_window_function));
156
417
                        } else {
157
417
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
417
                                                       AggregateFunctionTemplate>(
159
417
                                    result.release(), argument_types_, attr.is_window_function));
160
417
                        }
161
445
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_
Line
Count
Source
151
4
                    [&](auto multi_arguments, auto result_is_nullable) {
152
4
                        if (attr.enable_aggregate_function_null_v2) {
153
4
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
4
                                                         AggregateFunctionTemplate>(
155
4
                                    result.release(), argument_types_, attr.is_window_function));
156
4
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
4
                    },
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_
Line
Count
Source
151
348
                    [&](auto multi_arguments, auto result_is_nullable) {
152
348
                        if (attr.enable_aggregate_function_null_v2) {
153
5
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
5
                                                         AggregateFunctionTemplate>(
155
5
                                    result.release(), argument_types_, attr.is_window_function));
156
343
                        } else {
157
343
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
343
                                                       AggregateFunctionTemplate>(
159
343
                                    result.release(), argument_types_, attr.is_window_function));
160
343
                        }
161
348
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Line
Count
Source
151
3
                    [&](auto multi_arguments, auto result_is_nullable) {
152
3
                        if (attr.enable_aggregate_function_null_v2) {
153
3
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
3
                                                         AggregateFunctionTemplate>(
155
3
                                    result.release(), argument_types_, attr.is_window_function));
156
3
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
3
                    },
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Line
Count
Source
151
811
                    [&](auto multi_arguments, auto result_is_nullable) {
152
811
                        if (attr.enable_aggregate_function_null_v2) {
153
63
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
63
                                                         AggregateFunctionTemplate>(
155
63
                                    result.release(), argument_types_, attr.is_window_function));
156
748
                        } else {
157
748
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
748
                                                       AggregateFunctionTemplate>(
159
748
                                    result.release(), argument_types_, attr.is_window_function));
160
748
                        }
161
811
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Line
Count
Source
151
15
                    [&](auto multi_arguments, auto result_is_nullable) {
152
15
                        if (attr.enable_aggregate_function_null_v2) {
153
15
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
15
                                                         AggregateFunctionTemplate>(
155
15
                                    result.release(), argument_types_, attr.is_window_function));
156
15
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
15
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
151
4
                    [&](auto multi_arguments, auto result_is_nullable) {
152
4
                        if (attr.enable_aggregate_function_null_v2) {
153
4
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
4
                                                         AggregateFunctionTemplate>(
155
4
                                    result.release(), argument_types_, attr.is_window_function));
156
4
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
151
439
                    [&](auto multi_arguments, auto result_is_nullable) {
152
439
                        if (attr.enable_aggregate_function_null_v2) {
153
18
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
18
                                                         AggregateFunctionTemplate>(
155
18
                                    result.release(), argument_types_, attr.is_window_function));
156
421
                        } else {
157
421
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
421
                                                       AggregateFunctionTemplate>(
159
421
                                    result.release(), argument_types_, attr.is_window_function));
160
421
                        }
161
439
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
3
                    [&](auto multi_arguments, auto result_is_nullable) {
152
3
                        if (attr.enable_aggregate_function_null_v2) {
153
3
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
3
                                                         AggregateFunctionTemplate>(
155
3
                                    result.release(), argument_types_, attr.is_window_function));
156
3
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
3
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
11
                    [&](auto multi_arguments, auto result_is_nullable) {
152
11
                        if (attr.enable_aggregate_function_null_v2) {
153
11
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
11
                                                         AggregateFunctionTemplate>(
155
11
                                    result.release(), argument_types_, attr.is_window_function));
156
11
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
11
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Line
Count
Source
151
4
                    [&](auto multi_arguments, auto result_is_nullable) {
152
4
                        if (attr.enable_aggregate_function_null_v2) {
153
4
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
4
                                                         AggregateFunctionTemplate>(
155
4
                                    result.release(), argument_types_, attr.is_window_function));
156
4
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
10
                    [&](auto multi_arguments, auto result_is_nullable) {
152
10
                        if (attr.enable_aggregate_function_null_v2) {
153
10
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
10
                                                         AggregateFunctionTemplate>(
155
10
                                    result.release(), argument_types_, attr.is_window_function));
156
10
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
10
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
429
                    [&](auto multi_arguments, auto result_is_nullable) {
152
429
                        if (attr.enable_aggregate_function_null_v2) {
153
9
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
9
                                                         AggregateFunctionTemplate>(
155
9
                                    result.release(), argument_types_, attr.is_window_function));
156
420
                        } else {
157
420
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
420
                                                       AggregateFunctionTemplate>(
159
420
                                    result.release(), argument_types_, attr.is_window_function));
160
420
                        }
161
429
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
_ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Line
Count
Source
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_
_ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_
Line
Count
Source
151
72
                    [&](auto multi_arguments, auto result_is_nullable) {
152
72
                        if (attr.enable_aggregate_function_null_v2) {
153
72
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
72
                                                         AggregateFunctionTemplate>(
155
72
                                    result.release(), argument_types_, attr.is_window_function));
156
72
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
72
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_
_ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_
Line
Count
Source
151
437
                    [&](auto multi_arguments, auto result_is_nullable) {
152
437
                        if (attr.enable_aggregate_function_null_v2) {
153
16
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
16
                                                         AggregateFunctionTemplate>(
155
16
                                    result.release(), argument_types_, attr.is_window_function));
156
421
                        } else {
157
421
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
421
                                                       AggregateFunctionTemplate>(
159
421
                                    result.release(), argument_types_, attr.is_window_function));
160
421
                        }
161
437
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_
_ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_
Line
Count
Source
151
55
                    [&](auto multi_arguments, auto result_is_nullable) {
152
55
                        if (attr.enable_aggregate_function_null_v2) {
153
55
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
55
                                                         AggregateFunctionTemplate>(
155
55
                                    result.release(), argument_types_, attr.is_window_function));
156
55
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
55
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_
_ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_
Line
Count
Source
151
13
                    [&](auto multi_arguments, auto result_is_nullable) {
152
13
                        if (attr.enable_aggregate_function_null_v2) {
153
13
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
13
                                                         AggregateFunctionTemplate>(
155
13
                                    result.release(), argument_types_, attr.is_window_function));
156
13
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
13
                    },
162
5.74k
                    make_bool_variant(argument_types_.size() > 1),
163
5.74k
                    make_bool_variant(result_is_nullable));
164
5.74k
        }
165
166
7.00k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
7.00k
        return AggregateFunctionPtr(result.release());
168
7.00k
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2.53k
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2.53k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2.53k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2.53k
        if (have_nullable(argument_types_)) {
150
1.56k
            std::visit(
151
1.56k
                    [&](auto multi_arguments, auto result_is_nullable) {
152
1.56k
                        if (attr.enable_aggregate_function_null_v2) {
153
1.56k
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
1.56k
                                                         AggregateFunctionTemplate>(
155
1.56k
                                    result.release(), argument_types_, attr.is_window_function));
156
1.56k
                        } else {
157
1.56k
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
1.56k
                                                       AggregateFunctionTemplate>(
159
1.56k
                                    result.release(), argument_types_, attr.is_window_function));
160
1.56k
                        }
161
1.56k
                    },
162
1.56k
                    make_bool_variant(argument_types_.size() > 1),
163
1.56k
                    make_bool_variant(result_is_nullable));
164
1.56k
        }
165
166
2.53k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2.53k
        return AggregateFunctionPtr(result.release());
168
2.53k
    }
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
674
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
674
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
674
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
674
        if (have_nullable(argument_types_)) {
150
629
            std::visit(
151
629
                    [&](auto multi_arguments, auto result_is_nullable) {
152
629
                        if (attr.enable_aggregate_function_null_v2) {
153
629
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
629
                                                         AggregateFunctionTemplate>(
155
629
                                    result.release(), argument_types_, attr.is_window_function));
156
629
                        } else {
157
629
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
629
                                                       AggregateFunctionTemplate>(
159
629
                                    result.release(), argument_types_, attr.is_window_function));
160
629
                        }
161
629
                    },
162
629
                    make_bool_variant(argument_types_.size() > 1),
163
629
                    make_bool_variant(result_is_nullable));
164
629
        }
165
166
674
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
674
        return AggregateFunctionPtr(result.release());
168
674
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
2
            std::visit(
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
2
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
2
                                                       AggregateFunctionTemplate>(
159
2
                                    result.release(), argument_types_, attr.is_window_function));
160
2
                        }
161
2
                    },
162
2
                    make_bool_variant(argument_types_.size() > 1),
163
2
                    make_bool_variant(result_is_nullable));
164
2
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
924
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
924
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
924
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
924
        if (have_nullable(argument_types_)) {
150
881
            std::visit(
151
881
                    [&](auto multi_arguments, auto result_is_nullable) {
152
881
                        if (attr.enable_aggregate_function_null_v2) {
153
881
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
881
                                                         AggregateFunctionTemplate>(
155
881
                                    result.release(), argument_types_, attr.is_window_function));
156
881
                        } else {
157
881
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
881
                                                       AggregateFunctionTemplate>(
159
881
                                    result.release(), argument_types_, attr.is_window_function));
160
881
                        }
161
881
                    },
162
881
                    make_bool_variant(argument_types_.size() > 1),
163
881
                    make_bool_variant(result_is_nullable));
164
881
        }
165
166
924
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
924
        return AggregateFunctionPtr(result.release());
168
924
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
358
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
358
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
358
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
358
        if (have_nullable(argument_types_)) {
150
352
            std::visit(
151
352
                    [&](auto multi_arguments, auto result_is_nullable) {
152
352
                        if (attr.enable_aggregate_function_null_v2) {
153
352
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
352
                                                         AggregateFunctionTemplate>(
155
352
                                    result.release(), argument_types_, attr.is_window_function));
156
352
                        } else {
157
352
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
352
                                                       AggregateFunctionTemplate>(
159
352
                                    result.release(), argument_types_, attr.is_window_function));
160
352
                        }
161
352
                    },
162
352
                    make_bool_variant(argument_types_.size() > 1),
163
352
                    make_bool_variant(result_is_nullable));
164
352
        }
165
166
358
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
358
        return AggregateFunctionPtr(result.release());
168
358
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
892
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
892
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
892
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
892
        if (have_nullable(argument_types_)) {
150
816
            std::visit(
151
816
                    [&](auto multi_arguments, auto result_is_nullable) {
152
816
                        if (attr.enable_aggregate_function_null_v2) {
153
816
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
816
                                                         AggregateFunctionTemplate>(
155
816
                                    result.release(), argument_types_, attr.is_window_function));
156
816
                        } else {
157
816
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
816
                                                       AggregateFunctionTemplate>(
159
816
                                    result.release(), argument_types_, attr.is_window_function));
160
816
                        }
161
816
                    },
162
816
                    make_bool_variant(argument_types_.size() > 1),
163
816
                    make_bool_variant(result_is_nullable));
164
816
        }
165
166
892
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
892
        return AggregateFunctionPtr(result.release());
168
892
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
27
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
27
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
27
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
27
        if (have_nullable(argument_types_)) {
150
15
            std::visit(
151
15
                    [&](auto multi_arguments, auto result_is_nullable) {
152
15
                        if (attr.enable_aggregate_function_null_v2) {
153
15
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
15
                                                         AggregateFunctionTemplate>(
155
15
                                    result.release(), argument_types_, attr.is_window_function));
156
15
                        } else {
157
15
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
15
                                                       AggregateFunctionTemplate>(
159
15
                                    result.release(), argument_types_, attr.is_window_function));
160
15
                        }
161
15
                    },
162
15
                    make_bool_variant(argument_types_.size() > 1),
163
15
                    make_bool_variant(result_is_nullable));
164
15
        }
165
166
27
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
27
        return AggregateFunctionPtr(result.release());
168
27
    }
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
454
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
454
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
454
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
454
        if (have_nullable(argument_types_)) {
150
445
            std::visit(
151
445
                    [&](auto multi_arguments, auto result_is_nullable) {
152
445
                        if (attr.enable_aggregate_function_null_v2) {
153
445
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
445
                                                         AggregateFunctionTemplate>(
155
445
                                    result.release(), argument_types_, attr.is_window_function));
156
445
                        } else {
157
445
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
445
                                                       AggregateFunctionTemplate>(
159
445
                                    result.release(), argument_types_, attr.is_window_function));
160
445
                        }
161
445
                    },
162
445
                    make_bool_variant(argument_types_.size() > 1),
163
445
                    make_bool_variant(result_is_nullable));
164
445
        }
165
166
454
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
454
        return AggregateFunctionPtr(result.release());
168
454
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
3
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
3
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
3
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
3
        if (have_nullable(argument_types_)) {
150
3
            std::visit(
151
3
                    [&](auto multi_arguments, auto result_is_nullable) {
152
3
                        if (attr.enable_aggregate_function_null_v2) {
153
3
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
3
                                                         AggregateFunctionTemplate>(
155
3
                                    result.release(), argument_types_, attr.is_window_function));
156
3
                        } else {
157
3
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
3
                                                       AggregateFunctionTemplate>(
159
3
                                    result.release(), argument_types_, attr.is_window_function));
160
3
                        }
161
3
                    },
162
3
                    make_bool_variant(argument_types_.size() > 1),
163
3
                    make_bool_variant(result_is_nullable));
164
3
        }
165
166
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
3
        return AggregateFunctionPtr(result.release());
168
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
11
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
11
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
11
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
11
        if (have_nullable(argument_types_)) {
150
11
            std::visit(
151
11
                    [&](auto multi_arguments, auto result_is_nullable) {
152
11
                        if (attr.enable_aggregate_function_null_v2) {
153
11
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
11
                                                         AggregateFunctionTemplate>(
155
11
                                    result.release(), argument_types_, attr.is_window_function));
156
11
                        } else {
157
11
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
11
                                                       AggregateFunctionTemplate>(
159
11
                                    result.release(), argument_types_, attr.is_window_function));
160
11
                        }
161
11
                    },
162
11
                    make_bool_variant(argument_types_.size() > 1),
163
11
                    make_bool_variant(result_is_nullable));
164
11
        }
165
166
11
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
11
        return AggregateFunctionPtr(result.release());
168
11
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
20
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
20
        if (have_nullable(argument_types_)) {
150
4
            std::visit(
151
4
                    [&](auto multi_arguments, auto result_is_nullable) {
152
4
                        if (attr.enable_aggregate_function_null_v2) {
153
4
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
4
                                                         AggregateFunctionTemplate>(
155
4
                                    result.release(), argument_types_, attr.is_window_function));
156
4
                        } else {
157
4
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
4
                                                       AggregateFunctionTemplate>(
159
4
                                    result.release(), argument_types_, attr.is_window_function));
160
4
                        }
161
4
                    },
162
4
                    make_bool_variant(argument_types_.size() > 1),
163
4
                    make_bool_variant(result_is_nullable));
164
4
        }
165
166
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
20
        return AggregateFunctionPtr(result.release());
168
20
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
2
            std::visit(
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
2
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
2
                                                       AggregateFunctionTemplate>(
159
2
                                    result.release(), argument_types_, attr.is_window_function));
160
2
                        }
161
2
                    },
162
2
                    make_bool_variant(argument_types_.size() > 1),
163
2
                    make_bool_variant(result_is_nullable));
164
2
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
2
            std::visit(
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
2
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
2
                                                       AggregateFunctionTemplate>(
159
2
                                    result.release(), argument_types_, attr.is_window_function));
160
2
                        }
161
2
                    },
162
2
                    make_bool_variant(argument_types_.size() > 1),
163
2
                    make_bool_variant(result_is_nullable));
164
2
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
10
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
10
        if (have_nullable(argument_types_)) {
150
10
            std::visit(
151
10
                    [&](auto multi_arguments, auto result_is_nullable) {
152
10
                        if (attr.enable_aggregate_function_null_v2) {
153
10
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
10
                                                         AggregateFunctionTemplate>(
155
10
                                    result.release(), argument_types_, attr.is_window_function));
156
10
                        } else {
157
10
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
10
                                                       AggregateFunctionTemplate>(
159
10
                                    result.release(), argument_types_, attr.is_window_function));
160
10
                        }
161
10
                    },
162
10
                    make_bool_variant(argument_types_.size() > 1),
163
10
                    make_bool_variant(result_is_nullable));
164
10
        }
165
166
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
10
        return AggregateFunctionPtr(result.release());
168
10
    }
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
434
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
434
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
434
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
434
        if (have_nullable(argument_types_)) {
150
428
            std::visit(
151
428
                    [&](auto multi_arguments, auto result_is_nullable) {
152
428
                        if (attr.enable_aggregate_function_null_v2) {
153
428
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
428
                                                         AggregateFunctionTemplate>(
155
428
                                    result.release(), argument_types_, attr.is_window_function));
156
428
                        } else {
157
428
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
428
                                                       AggregateFunctionTemplate>(
159
428
                                    result.release(), argument_types_, attr.is_window_function));
160
428
                        }
161
428
                    },
162
428
                    make_bool_variant(argument_types_.size() > 1),
163
428
                    make_bool_variant(result_is_nullable));
164
428
        }
165
166
434
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
434
        return AggregateFunctionPtr(result.release());
168
434
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
2
            std::visit(
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
2
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
2
                                                       AggregateFunctionTemplate>(
159
2
                                    result.release(), argument_types_, attr.is_window_function));
160
2
                        }
161
2
                    },
162
2
                    make_bool_variant(argument_types_.size() > 1),
163
2
                    make_bool_variant(result_is_nullable));
164
2
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
2
            std::visit(
151
2
                    [&](auto multi_arguments, auto result_is_nullable) {
152
2
                        if (attr.enable_aggregate_function_null_v2) {
153
2
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
2
                                                         AggregateFunctionTemplate>(
155
2
                                    result.release(), argument_types_, attr.is_window_function));
156
2
                        } else {
157
2
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
2
                                                       AggregateFunctionTemplate>(
159
2
                                    result.release(), argument_types_, attr.is_window_function));
160
2
                        }
161
2
                    },
162
2
                    make_bool_variant(argument_types_.size() > 1),
163
2
                    make_bool_variant(result_is_nullable));
164
2
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
95
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
95
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
95
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
95
        if (have_nullable(argument_types_)) {
150
72
            std::visit(
151
72
                    [&](auto multi_arguments, auto result_is_nullable) {
152
72
                        if (attr.enable_aggregate_function_null_v2) {
153
72
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
72
                                                         AggregateFunctionTemplate>(
155
72
                                    result.release(), argument_types_, attr.is_window_function));
156
72
                        } else {
157
72
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
72
                                                       AggregateFunctionTemplate>(
159
72
                                    result.release(), argument_types_, attr.is_window_function));
160
72
                        }
161
72
                    },
162
72
                    make_bool_variant(argument_types_.size() > 1),
163
72
                    make_bool_variant(result_is_nullable));
164
72
        }
165
166
95
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
95
        return AggregateFunctionPtr(result.release());
168
95
    }
_ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
450
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
450
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
450
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
450
        if (have_nullable(argument_types_)) {
150
438
            std::visit(
151
438
                    [&](auto multi_arguments, auto result_is_nullable) {
152
438
                        if (attr.enable_aggregate_function_null_v2) {
153
438
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
438
                                                         AggregateFunctionTemplate>(
155
438
                                    result.release(), argument_types_, attr.is_window_function));
156
438
                        } else {
157
438
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
438
                                                       AggregateFunctionTemplate>(
159
438
                                    result.release(), argument_types_, attr.is_window_function));
160
438
                        }
161
438
                    },
162
438
                    make_bool_variant(argument_types_.size() > 1),
163
438
                    make_bool_variant(result_is_nullable));
164
438
        }
165
166
450
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
450
        return AggregateFunctionPtr(result.release());
168
450
    }
_ZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
2
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
2
        if (have_nullable(argument_types_)) {
150
0
            std::visit(
151
0
                    [&](auto multi_arguments, auto result_is_nullable) {
152
0
                        if (attr.enable_aggregate_function_null_v2) {
153
0
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
0
                                                         AggregateFunctionTemplate>(
155
0
                                    result.release(), argument_types_, attr.is_window_function));
156
0
                        } else {
157
0
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
0
                                                       AggregateFunctionTemplate>(
159
0
                                    result.release(), argument_types_, attr.is_window_function));
160
0
                        }
161
0
                    },
162
0
                    make_bool_variant(argument_types_.size() > 1),
163
0
                    make_bool_variant(result_is_nullable));
164
0
        }
165
166
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
2
        return AggregateFunctionPtr(result.release());
168
2
    }
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
146
110
                                               const AggregateFunctionAttr& attr, TArgs&&... args) {
147
110
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
148
110
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
149
110
        if (have_nullable(argument_types_)) {
150
68
            std::visit(
151
68
                    [&](auto multi_arguments, auto result_is_nullable) {
152
68
                        if (attr.enable_aggregate_function_null_v2) {
153
68
                            result.reset(new NullableV2T<multi_arguments, result_is_nullable,
154
68
                                                         AggregateFunctionTemplate>(
155
68
                                    result.release(), argument_types_, attr.is_window_function));
156
68
                        } else {
157
68
                            result.reset(new NullableT<multi_arguments, result_is_nullable,
158
68
                                                       AggregateFunctionTemplate>(
159
68
                                    result.release(), argument_types_, attr.is_window_function));
160
68
                        }
161
68
                    },
162
68
                    make_bool_variant(argument_types_.size() > 1),
163
68
                    make_bool_variant(result_is_nullable));
164
68
        }
165
166
110
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
167
110
        return AggregateFunctionPtr(result.release());
168
110
    }
169
170
    template <typename AggregateFunctionTemplate, typename... TArgs>
171
    static AggregateFunctionPtr create_varargs_return_not_nullable(
172
            const DataTypes& argument_types_, const bool result_is_nullable,
173
6.02k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
6.02k
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
6.02k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
6.02k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
6.02k
        if (have_nullable(argument_types_)) {
181
3.84k
            if (argument_types_.size() > 1) {
182
936
                if (attr.enable_aggregate_function_null_v2) {
183
513
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
513
                            result.release(), argument_types_, attr.is_window_function));
185
513
                } else {
186
423
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
423
                            result.release(), argument_types_, attr.is_window_function));
188
423
                }
189
2.91k
            } else {
190
2.91k
                if (attr.enable_aggregate_function_null_v2) {
191
1.07k
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
1.07k
                            result.release(), argument_types_, attr.is_window_function));
193
1.84k
                } else {
194
1.84k
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
1.84k
                            result.release(), argument_types_, attr.is_window_function));
196
1.84k
                }
197
2.91k
            }
198
3.84k
        }
199
200
6.02k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
6.02k
        return AggregateFunctionPtr(result.release());
202
6.02k
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
2
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
2
            } else {
190
2
                if (attr.enable_aggregate_function_null_v2) {
191
2
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
2
                            result.release(), argument_types_, attr.is_window_function));
193
2
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
2
            }
198
2
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
16
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
16
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
16
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
16
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
16
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
16
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
16
        return AggregateFunctionPtr(result.release());
202
16
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
715
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
715
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
715
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
715
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
715
        if (have_nullable(argument_types_)) {
181
646
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
646
            } else {
190
646
                if (attr.enable_aggregate_function_null_v2) {
191
223
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
223
                            result.release(), argument_types_, attr.is_window_function));
193
423
                } else {
194
423
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
423
                            result.release(), argument_types_, attr.is_window_function));
196
423
                }
197
646
            }
198
646
        }
199
200
715
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
715
        return AggregateFunctionPtr(result.release());
202
715
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
58
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
58
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
58
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
58
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
58
        if (have_nullable(argument_types_)) {
181
25
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
25
            } else {
190
25
                if (attr.enable_aggregate_function_null_v2) {
191
25
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
25
                            result.release(), argument_types_, attr.is_window_function));
193
25
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
25
            }
198
25
        }
199
200
58
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
58
        return AggregateFunctionPtr(result.release());
202
58
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
0
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
0
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
0
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
12
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
12
            } else {
190
12
                if (attr.enable_aggregate_function_null_v2) {
191
12
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
12
                            result.release(), argument_types_, attr.is_window_function));
193
12
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
12
            }
198
12
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
1
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
1
        if (have_nullable(argument_types_)) {
181
1
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
1
            } else {
190
1
                if (attr.enable_aggregate_function_null_v2) {
191
1
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
1
                            result.release(), argument_types_, attr.is_window_function));
193
1
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
1
            }
198
1
        }
199
200
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
1
        return AggregateFunctionPtr(result.release());
202
1
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
13
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
13
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
13
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
13
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
13
        if (have_nullable(argument_types_)) {
181
13
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
13
            } else {
190
13
                if (attr.enable_aggregate_function_null_v2) {
191
13
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
13
                            result.release(), argument_types_, attr.is_window_function));
193
13
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
13
            }
198
13
        }
199
200
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
13
        return AggregateFunctionPtr(result.release());
202
13
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
562
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
562
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
562
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
562
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
562
        if (have_nullable(argument_types_)) {
181
270
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
270
            } else {
190
270
                if (attr.enable_aggregate_function_null_v2) {
191
270
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
270
                            result.release(), argument_types_, attr.is_window_function));
193
270
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
270
            }
198
270
        }
199
200
562
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
562
        return AggregateFunctionPtr(result.release());
202
562
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
4
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
4
        if (have_nullable(argument_types_)) {
181
4
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
4
            } else {
190
4
                if (attr.enable_aggregate_function_null_v2) {
191
4
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
4
                            result.release(), argument_types_, attr.is_window_function));
193
4
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
4
            }
198
4
        }
199
200
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
4
        return AggregateFunctionPtr(result.release());
202
4
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
10
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
10
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
10
        if (have_nullable(argument_types_)) {
181
4
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
4
            } else {
190
4
                if (attr.enable_aggregate_function_null_v2) {
191
4
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
4
                            result.release(), argument_types_, attr.is_window_function));
193
4
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
4
            }
198
4
        }
199
200
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
10
        return AggregateFunctionPtr(result.release());
202
10
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
2
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
2
            } else {
190
2
                if (attr.enable_aggregate_function_null_v2) {
191
2
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
2
                            result.release(), argument_types_, attr.is_window_function));
193
2
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
2
            }
198
2
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
11
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
11
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
11
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
11
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
11
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
11
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
11
        return AggregateFunctionPtr(result.release());
202
11
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
14
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
14
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
14
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
14
        return AggregateFunctionPtr(result.release());
202
14
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
9
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
9
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
9
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
9
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
9
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
9
        return AggregateFunctionPtr(result.release());
202
9
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
13
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
13
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
13
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
13
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
13
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
13
        return AggregateFunctionPtr(result.release());
202
13
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
451
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
451
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
451
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
451
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
451
        if (have_nullable(argument_types_)) {
181
442
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
442
            } else {
190
442
                if (attr.enable_aggregate_function_null_v2) {
191
20
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
20
                            result.release(), argument_types_, attr.is_window_function));
193
422
                } else {
194
422
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
422
                            result.release(), argument_types_, attr.is_window_function));
196
422
                }
197
442
            }
198
442
        }
199
200
451
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
451
        return AggregateFunctionPtr(result.release());
202
451
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
920
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
920
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
920
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
920
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
920
        if (have_nullable(argument_types_)) {
181
441
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
441
            } else {
190
441
                if (attr.enable_aggregate_function_null_v2) {
191
18
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
18
                            result.release(), argument_types_, attr.is_window_function));
193
423
                } else {
194
423
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
423
                            result.release(), argument_types_, attr.is_window_function));
196
423
                }
197
441
            }
198
441
        }
199
200
920
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
920
        return AggregateFunctionPtr(result.release());
202
920
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
10
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
10
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
10
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
10
        return AggregateFunctionPtr(result.release());
202
10
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
15
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
15
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
15
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
15
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
15
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
15
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
15
        return AggregateFunctionPtr(result.release());
202
15
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
10
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
10
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
10
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
10
        return AggregateFunctionPtr(result.release());
202
10
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
10
                if (attr.enable_aggregate_function_null_v2) {
191
10
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
10
                            result.release(), argument_types_, attr.is_window_function));
193
10
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
10
            }
198
10
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
8
                if (attr.enable_aggregate_function_null_v2) {
191
8
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
8
                            result.release(), argument_types_, attr.is_window_function));
193
8
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
8
            }
198
8
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
2
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
2
            } else {
190
2
                if (attr.enable_aggregate_function_null_v2) {
191
2
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
2
                            result.release(), argument_types_, attr.is_window_function));
193
2
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
2
            }
198
2
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
4
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
4
        if (have_nullable(argument_types_)) {
181
0
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
0
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
0
        }
199
200
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
4
        return AggregateFunctionPtr(result.release());
202
4
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
0
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
0
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
0
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
2
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
2
        if (have_nullable(argument_types_)) {
181
0
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
0
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
0
        }
199
200
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
2
        return AggregateFunctionPtr(result.release());
202
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
6
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
6
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
6
        if (have_nullable(argument_types_)) {
181
2
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
2
            } else {
190
2
                if (attr.enable_aggregate_function_null_v2) {
191
2
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
2
                            result.release(), argument_types_, attr.is_window_function));
193
2
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
2
            }
198
2
        }
199
200
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
6
        return AggregateFunctionPtr(result.release());
202
6
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
17
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
17
            } else {
190
17
                if (attr.enable_aggregate_function_null_v2) {
191
17
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
17
                            result.release(), argument_types_, attr.is_window_function));
193
17
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
17
            }
198
17
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
25
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
25
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
25
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
25
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
25
        if (have_nullable(argument_types_)) {
181
20
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
20
            } else {
190
20
                if (attr.enable_aggregate_function_null_v2) {
191
20
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
20
                            result.release(), argument_types_, attr.is_window_function));
193
20
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
20
            }
198
20
        }
199
200
25
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
25
        return AggregateFunctionPtr(result.release());
202
25
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
17
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
17
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
17
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
17
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
17
        if (have_nullable(argument_types_)) {
181
16
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
16
            } else {
190
16
                if (attr.enable_aggregate_function_null_v2) {
191
16
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
16
                            result.release(), argument_types_, attr.is_window_function));
193
16
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
16
            }
198
16
        }
199
200
17
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
17
        return AggregateFunctionPtr(result.release());
202
17
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
23
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
23
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
23
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
23
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
23
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
18
                if (attr.enable_aggregate_function_null_v2) {
191
18
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
18
                            result.release(), argument_types_, attr.is_window_function));
193
18
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
18
            }
198
18
        }
199
200
23
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
23
        return AggregateFunctionPtr(result.release());
202
23
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
195
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
195
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
195
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
195
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
195
        if (have_nullable(argument_types_)) {
181
181
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
181
            } else {
190
181
                if (attr.enable_aggregate_function_null_v2) {
191
31
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
31
                            result.release(), argument_types_, attr.is_window_function));
193
150
                } else {
194
150
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
150
                            result.release(), argument_types_, attr.is_window_function));
196
150
                }
197
181
            }
198
181
        }
199
200
195
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
195
        return AggregateFunctionPtr(result.release());
202
195
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
61
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
61
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
61
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
61
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
61
        if (have_nullable(argument_types_)) {
181
33
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
33
            } else {
190
33
                if (attr.enable_aggregate_function_null_v2) {
191
33
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
33
                            result.release(), argument_types_, attr.is_window_function));
193
33
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
33
            }
198
33
        }
199
200
61
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
61
        return AggregateFunctionPtr(result.release());
202
61
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
12
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
12
            } else {
190
12
                if (attr.enable_aggregate_function_null_v2) {
191
12
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
12
                            result.release(), argument_types_, attr.is_window_function));
193
12
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
12
            }
198
12
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
524
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
524
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
524
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
524
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
524
        if (have_nullable(argument_types_)) {
181
10
            if (argument_types_.size() > 1) {
182
10
                if (attr.enable_aggregate_function_null_v2) {
183
10
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
10
                            result.release(), argument_types_, attr.is_window_function));
185
10
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
10
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
10
        }
199
200
524
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
524
        return AggregateFunctionPtr(result.release());
202
524
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
475
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
475
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
475
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
475
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
475
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
475
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
475
        return AggregateFunctionPtr(result.release());
202
475
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
9
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
9
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
9
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
9
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
9
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
9
        return AggregateFunctionPtr(result.release());
202
9
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
9
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
9
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
9
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
9
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
9
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
9
        return AggregateFunctionPtr(result.release());
202
9
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
8
            if (argument_types_.size() > 1) {
182
8
                if (attr.enable_aggregate_function_null_v2) {
183
8
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
8
                            result.release(), argument_types_, attr.is_window_function));
185
8
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
8
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
8
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
33
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
33
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
33
        if (have_nullable(argument_types_)) {
181
25
            if (argument_types_.size() > 1) {
182
25
                if (attr.enable_aggregate_function_null_v2) {
183
25
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
25
                            result.release(), argument_types_, attr.is_window_function));
185
25
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
25
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
25
        }
199
200
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
33
        return AggregateFunctionPtr(result.release());
202
33
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
32
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
32
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
32
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
32
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
32
        if (have_nullable(argument_types_)) {
181
24
            if (argument_types_.size() > 1) {
182
24
                if (attr.enable_aggregate_function_null_v2) {
183
24
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
24
                            result.release(), argument_types_, attr.is_window_function));
185
24
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
24
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
24
        }
199
200
32
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
32
        return AggregateFunctionPtr(result.release());
202
32
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
12
            if (argument_types_.size() > 1) {
182
12
                if (attr.enable_aggregate_function_null_v2) {
183
12
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
12
                            result.release(), argument_types_, attr.is_window_function));
185
12
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
12
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
12
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
91
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
91
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
91
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
91
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
91
        if (have_nullable(argument_types_)) {
181
67
            if (argument_types_.size() > 1) {
182
67
                if (attr.enable_aggregate_function_null_v2) {
183
67
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
67
                            result.release(), argument_types_, attr.is_window_function));
185
67
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
67
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
67
        }
199
200
91
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
91
        return AggregateFunctionPtr(result.release());
202
91
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
451
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
451
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
451
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
451
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
451
        if (have_nullable(argument_types_)) {
181
439
            if (argument_types_.size() > 1) {
182
439
                if (attr.enable_aggregate_function_null_v2) {
183
16
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
16
                            result.release(), argument_types_, attr.is_window_function));
185
423
                } else {
186
423
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
423
                            result.release(), argument_types_, attr.is_window_function));
188
423
                }
189
439
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
439
        }
199
200
451
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
451
        return AggregateFunctionPtr(result.release());
202
451
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
11
                if (attr.enable_aggregate_function_null_v2) {
183
11
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
11
                            result.release(), argument_types_, attr.is_window_function));
185
11
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
11
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
11
                if (attr.enable_aggregate_function_null_v2) {
183
11
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
11
                            result.release(), argument_types_, attr.is_window_function));
185
11
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
11
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
5
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
5
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
5
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
5
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
5
        if (have_nullable(argument_types_)) {
181
4
            if (argument_types_.size() > 1) {
182
4
                if (attr.enable_aggregate_function_null_v2) {
183
4
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
4
                            result.release(), argument_types_, attr.is_window_function));
185
4
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
4
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
4
        }
199
200
5
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
5
        return AggregateFunctionPtr(result.release());
202
5
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
11
                if (attr.enable_aggregate_function_null_v2) {
183
11
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
11
                            result.release(), argument_types_, attr.is_window_function));
185
11
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
11
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
12
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
12
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
11
                if (attr.enable_aggregate_function_null_v2) {
183
11
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
11
                            result.release(), argument_types_, attr.is_window_function));
185
11
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
11
        }
199
200
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
12
        return AggregateFunctionPtr(result.release());
202
12
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
7
            if (argument_types_.size() > 1) {
182
7
                if (attr.enable_aggregate_function_null_v2) {
183
7
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
7
                            result.release(), argument_types_, attr.is_window_function));
185
7
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
7
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
7
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
8
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
8
        if (have_nullable(argument_types_)) {
181
7
            if (argument_types_.size() > 1) {
182
7
                if (attr.enable_aggregate_function_null_v2) {
183
7
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
7
                            result.release(), argument_types_, attr.is_window_function));
185
7
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
7
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
7
        }
199
200
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
8
        return AggregateFunctionPtr(result.release());
202
8
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
18
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
18
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
18
        return AggregateFunctionPtr(result.release());
202
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
43
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
43
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
43
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
43
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
43
        if (have_nullable(argument_types_)) {
181
35
            if (argument_types_.size() > 1) {
182
35
                if (attr.enable_aggregate_function_null_v2) {
183
35
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
35
                            result.release(), argument_types_, attr.is_window_function));
185
35
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
35
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
35
        }
199
200
43
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
43
        return AggregateFunctionPtr(result.release());
202
43
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
19
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
19
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
19
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
19
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
19
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
19
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
19
        return AggregateFunctionPtr(result.release());
202
19
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
19
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
19
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
19
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
19
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
19
        if (have_nullable(argument_types_)) {
181
18
            if (argument_types_.size() > 1) {
182
18
                if (attr.enable_aggregate_function_null_v2) {
183
18
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
18
                            result.release(), argument_types_, attr.is_window_function));
185
18
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
18
            } else {
190
0
                if (attr.enable_aggregate_function_null_v2) {
191
0
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
0
                            result.release(), argument_types_, attr.is_window_function));
193
0
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
0
            }
198
18
        }
199
200
19
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
19
        return AggregateFunctionPtr(result.release());
202
19
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
4
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
4
        if (have_nullable(argument_types_)) {
181
4
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
4
            } else {
190
4
                if (attr.enable_aggregate_function_null_v2) {
191
4
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
4
                            result.release(), argument_types_, attr.is_window_function));
193
4
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
4
            }
198
4
        }
199
200
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
4
        return AggregateFunctionPtr(result.release());
202
4
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
20
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
20
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
20
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
20
        return AggregateFunctionPtr(result.release());
202
20
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
20
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
20
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
20
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
20
        return AggregateFunctionPtr(result.release());
202
20
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
457
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
457
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
457
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
457
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
457
        if (have_nullable(argument_types_)) {
181
442
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
442
            } else {
190
442
                if (attr.enable_aggregate_function_null_v2) {
191
20
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
20
                            result.release(), argument_types_, attr.is_window_function));
193
422
                } else {
194
422
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
422
                            result.release(), argument_types_, attr.is_window_function));
196
422
                }
197
442
            }
198
442
        }
199
200
457
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
457
        return AggregateFunctionPtr(result.release());
202
457
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
21
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
21
        if (have_nullable(argument_types_)) {
181
12
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
12
            } else {
190
12
                if (attr.enable_aggregate_function_null_v2) {
191
12
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
12
                            result.release(), argument_types_, attr.is_window_function));
193
12
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
12
            }
198
12
        }
199
200
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
21
        return AggregateFunctionPtr(result.release());
202
21
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
20
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
20
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
20
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
20
        return AggregateFunctionPtr(result.release());
202
20
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
20
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
20
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
20
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
20
        return AggregateFunctionPtr(result.release());
202
20
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
20
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
20
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
20
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
20
        return AggregateFunctionPtr(result.release());
202
20
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
19
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
19
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
19
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
19
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
19
        if (have_nullable(argument_types_)) {
181
11
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
11
            } else {
190
11
                if (attr.enable_aggregate_function_null_v2) {
191
11
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
11
                            result.release(), argument_types_, attr.is_window_function));
193
11
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
11
            }
198
11
        }
199
200
19
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
19
        return AggregateFunctionPtr(result.release());
202
19
    }
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
39
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
39
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
39
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
39
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
39
        if (have_nullable(argument_types_)) {
181
22
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
22
            } else {
190
22
                if (attr.enable_aggregate_function_null_v2) {
191
22
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
22
                            result.release(), argument_types_, attr.is_window_function));
193
22
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
22
            }
198
22
        }
199
200
39
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
39
        return AggregateFunctionPtr(result.release());
202
39
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
38
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
38
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
38
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
38
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
38
        if (have_nullable(argument_types_)) {
181
22
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
22
            } else {
190
22
                if (attr.enable_aggregate_function_null_v2) {
191
22
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
22
                            result.release(), argument_types_, attr.is_window_function));
193
22
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
22
            }
198
22
        }
199
200
38
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
38
        return AggregateFunctionPtr(result.release());
202
38
    }
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
173
38
            const AggregateFunctionAttr& attr, TArgs&&... args) {
174
38
        if (!attr.is_foreach && result_is_nullable) {
175
0
            throw doris::Exception(Status::InternalError(
176
0
                    "create_varargs_return_not_nullable: result_is_nullable must be false"));
177
0
        }
178
38
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
179
38
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
180
38
        if (have_nullable(argument_types_)) {
181
22
            if (argument_types_.size() > 1) {
182
0
                if (attr.enable_aggregate_function_null_v2) {
183
0
                    result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
184
0
                            result.release(), argument_types_, attr.is_window_function));
185
0
                } else {
186
0
                    result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
187
0
                            result.release(), argument_types_, attr.is_window_function));
188
0
                }
189
22
            } else {
190
22
                if (attr.enable_aggregate_function_null_v2) {
191
22
                    result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
192
22
                            result.release(), argument_types_, attr.is_window_function));
193
22
                } else {
194
0
                    result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
195
0
                            result.release(), argument_types_, attr.is_window_function));
196
0
                }
197
22
            }
198
22
        }
199
200
38
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
201
38
        return AggregateFunctionPtr(result.release());
202
38
    }
203
204
    template <typename AggregateFunctionTemplate, typename... TArgs>
205
    static AggregateFunctionPtr create_multi_arguments(const DataTypes& argument_types_,
206
                                                       const bool result_is_nullable,
207
                                                       const AggregateFunctionAttr& attr,
208
10.4k
                                                       TArgs&&... args) {
209
10.4k
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
10.4k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
10.4k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
10.4k
        if (have_nullable(argument_types_)) {
216
10.1k
            std::visit(
217
10.1k
                    [&](auto result_is_nullable) {
218
10.1k
                        if (attr.enable_aggregate_function_null_v2) {
219
850
                            result.reset(new NullableV2T<true, result_is_nullable,
220
850
                                                         AggregateFunctionTemplate>(
221
850
                                    result.release(), argument_types_, attr.is_window_function));
222
9.29k
                        } else {
223
9.29k
                            result.reset(new NullableT<true, result_is_nullable,
224
9.29k
                                                       AggregateFunctionTemplate>(
225
9.29k
                                    result.release(), argument_types_, attr.is_window_function));
226
9.29k
                        }
227
10.1k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
492
                    [&](auto result_is_nullable) {
218
492
                        if (attr.enable_aggregate_function_null_v2) {
219
71
                            result.reset(new NullableV2T<true, result_is_nullable,
220
71
                                                         AggregateFunctionTemplate>(
221
71
                                    result.release(), argument_types_, attr.is_window_function));
222
421
                        } else {
223
421
                            result.reset(new NullableT<true, result_is_nullable,
224
421
                                                       AggregateFunctionTemplate>(
225
421
                                    result.release(), argument_types_, attr.is_window_function));
226
421
                        }
227
492
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
15
                    [&](auto result_is_nullable) {
218
15
                        if (attr.enable_aggregate_function_null_v2) {
219
3
                            result.reset(new NullableV2T<true, result_is_nullable,
220
3
                                                         AggregateFunctionTemplate>(
221
3
                                    result.release(), argument_types_, attr.is_window_function));
222
12
                        } else {
223
12
                            result.reset(new NullableT<true, result_is_nullable,
224
12
                                                       AggregateFunctionTemplate>(
225
12
                                    result.release(), argument_types_, attr.is_window_function));
226
12
                        }
227
15
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
8
                    [&](auto result_is_nullable) {
218
8
                        if (attr.enable_aggregate_function_null_v2) {
219
8
                            result.reset(new NullableV2T<true, result_is_nullable,
220
8
                                                         AggregateFunctionTemplate>(
221
8
                                    result.release(), argument_types_, attr.is_window_function));
222
8
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
8
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
6
                    [&](auto result_is_nullable) {
218
6
                        if (attr.enable_aggregate_function_null_v2) {
219
0
                            result.reset(new NullableV2T<true, result_is_nullable,
220
0
                                                         AggregateFunctionTemplate>(
221
0
                                    result.release(), argument_types_, attr.is_window_function));
222
6
                        } else {
223
6
                            result.reset(new NullableT<true, result_is_nullable,
224
6
                                                       AggregateFunctionTemplate>(
225
6
                                    result.release(), argument_types_, attr.is_window_function));
226
6
                        }
227
6
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
1.90k
                    [&](auto result_is_nullable) {
218
1.90k
                        if (attr.enable_aggregate_function_null_v2) {
219
73
                            result.reset(new NullableV2T<true, result_is_nullable,
220
73
                                                         AggregateFunctionTemplate>(
221
73
                                    result.release(), argument_types_, attr.is_window_function));
222
1.83k
                        } else {
223
1.83k
                            result.reset(new NullableT<true, result_is_nullable,
224
1.83k
                                                       AggregateFunctionTemplate>(
225
1.83k
                                    result.release(), argument_types_, attr.is_window_function));
226
1.83k
                        }
227
1.90k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
590
                    [&](auto result_is_nullable) {
218
590
                        if (attr.enable_aggregate_function_null_v2) {
219
3
                            result.reset(new NullableV2T<true, result_is_nullable,
220
3
                                                         AggregateFunctionTemplate>(
221
3
                                    result.release(), argument_types_, attr.is_window_function));
222
587
                        } else {
223
587
                            result.reset(new NullableT<true, result_is_nullable,
224
587
                                                       AggregateFunctionTemplate>(
225
587
                                    result.release(), argument_types_, attr.is_window_function));
226
587
                        }
227
590
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
415
                    [&](auto result_is_nullable) {
218
415
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
413
                        } else {
223
413
                            result.reset(new NullableT<true, result_is_nullable,
224
413
                                                       AggregateFunctionTemplate>(
225
413
                                    result.release(), argument_types_, attr.is_window_function));
226
413
                        }
227
415
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
256
                    [&](auto result_is_nullable) {
218
256
                        if (attr.enable_aggregate_function_null_v2) {
219
8
                            result.reset(new NullableV2T<true, result_is_nullable,
220
8
                                                         AggregateFunctionTemplate>(
221
8
                                    result.release(), argument_types_, attr.is_window_function));
222
248
                        } else {
223
248
                            result.reset(new NullableT<true, result_is_nullable,
224
248
                                                       AggregateFunctionTemplate>(
225
248
                                    result.release(), argument_types_, attr.is_window_function));
226
248
                        }
227
256
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
8
                    [&](auto result_is_nullable) {
218
8
                        if (attr.enable_aggregate_function_null_v2) {
219
8
                            result.reset(new NullableV2T<true, result_is_nullable,
220
8
                                                         AggregateFunctionTemplate>(
221
8
                                    result.release(), argument_types_, attr.is_window_function));
222
8
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
8
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
450
                    [&](auto result_is_nullable) {
218
450
                        if (attr.enable_aggregate_function_null_v2) {
219
30
                            result.reset(new NullableV2T<true, result_is_nullable,
220
30
                                                         AggregateFunctionTemplate>(
221
30
                                    result.release(), argument_types_, attr.is_window_function));
222
420
                        } else {
223
420
                            result.reset(new NullableT<true, result_is_nullable,
224
420
                                                       AggregateFunctionTemplate>(
225
420
                                    result.release(), argument_types_, attr.is_window_function));
226
420
                        }
227
450
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
25
                    [&](auto result_is_nullable) {
218
25
                        if (attr.enable_aggregate_function_null_v2) {
219
25
                            result.reset(new NullableV2T<true, result_is_nullable,
220
25
                                                         AggregateFunctionTemplate>(
221
25
                                    result.release(), argument_types_, attr.is_window_function));
222
25
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
3
                    [&](auto result_is_nullable) {
218
3
                        if (attr.enable_aggregate_function_null_v2) {
219
3
                            result.reset(new NullableV2T<true, result_is_nullable,
220
3
                                                         AggregateFunctionTemplate>(
221
3
                                    result.release(), argument_types_, attr.is_window_function));
222
3
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
3
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
1
                    [&](auto result_is_nullable) {
218
1
                        if (attr.enable_aggregate_function_null_v2) {
219
1
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1
                                                         AggregateFunctionTemplate>(
221
1
                                    result.release(), argument_types_, attr.is_window_function));
222
1
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
1
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
428
                    [&](auto result_is_nullable) {
218
428
                        if (attr.enable_aggregate_function_null_v2) {
219
7
                            result.reset(new NullableV2T<true, result_is_nullable,
220
7
                                                         AggregateFunctionTemplate>(
221
7
                                    result.release(), argument_types_, attr.is_window_function));
222
421
                        } else {
223
421
                            result.reset(new NullableT<true, result_is_nullable,
224
421
                                                       AggregateFunctionTemplate>(
225
421
                                    result.release(), argument_types_, attr.is_window_function));
226
421
                        }
227
428
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
1
                    [&](auto result_is_nullable) {
218
1
                        if (attr.enable_aggregate_function_null_v2) {
219
1
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1
                                                         AggregateFunctionTemplate>(
221
1
                                    result.release(), argument_types_, attr.is_window_function));
222
1
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
1
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
424
                    [&](auto result_is_nullable) {
218
424
                        if (attr.enable_aggregate_function_null_v2) {
219
7
                            result.reset(new NullableV2T<true, result_is_nullable,
220
7
                                                         AggregateFunctionTemplate>(
221
7
                                    result.release(), argument_types_, attr.is_window_function));
222
417
                        } else {
223
417
                            result.reset(new NullableT<true, result_is_nullable,
224
417
                                                       AggregateFunctionTemplate>(
225
417
                                    result.release(), argument_types_, attr.is_window_function));
226
417
                        }
227
424
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Line
Count
Source
217
736
                    [&](auto result_is_nullable) {
218
736
                        if (attr.enable_aggregate_function_null_v2) {
219
44
                            result.reset(new NullableV2T<true, result_is_nullable,
220
44
                                                         AggregateFunctionTemplate>(
221
44
                                    result.release(), argument_types_, attr.is_window_function));
222
692
                        } else {
223
692
                            result.reset(new NullableT<true, result_is_nullable,
224
692
                                                       AggregateFunctionTemplate>(
225
692
                                    result.release(), argument_types_, attr.is_window_function));
226
692
                        }
227
736
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Line
Count
Source
217
38
                    [&](auto result_is_nullable) {
218
38
                        if (attr.enable_aggregate_function_null_v2) {
219
38
                            result.reset(new NullableV2T<true, result_is_nullable,
220
38
                                                         AggregateFunctionTemplate>(
221
38
                                    result.release(), argument_types_, attr.is_window_function));
222
38
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
38
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Line
Count
Source
217
17
                    [&](auto result_is_nullable) {
218
17
                        if (attr.enable_aggregate_function_null_v2) {
219
17
                            result.reset(new NullableV2T<true, result_is_nullable,
220
17
                                                         AggregateFunctionTemplate>(
221
17
                                    result.release(), argument_types_, attr.is_window_function));
222
17
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
17
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Line
Count
Source
217
20
                    [&](auto result_is_nullable) {
218
20
                        if (attr.enable_aggregate_function_null_v2) {
219
20
                            result.reset(new NullableV2T<true, result_is_nullable,
220
20
                                                         AggregateFunctionTemplate>(
221
20
                                    result.release(), argument_types_, attr.is_window_function));
222
20
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
20
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
6
                    [&](auto result_is_nullable) {
218
6
                        if (attr.enable_aggregate_function_null_v2) {
219
6
                            result.reset(new NullableV2T<true, result_is_nullable,
220
6
                                                         AggregateFunctionTemplate>(
221
6
                                    result.release(), argument_types_, attr.is_window_function));
222
6
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
6
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
20
                    [&](auto result_is_nullable) {
218
20
                        if (attr.enable_aggregate_function_null_v2) {
219
20
                            result.reset(new NullableV2T<true, result_is_nullable,
220
20
                                                         AggregateFunctionTemplate>(
221
20
                                    result.release(), argument_types_, attr.is_window_function));
222
20
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
20
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
27
                    [&](auto result_is_nullable) {
218
27
                        if (attr.enable_aggregate_function_null_v2) {
219
27
                            result.reset(new NullableV2T<true, result_is_nullable,
220
27
                                                         AggregateFunctionTemplate>(
221
27
                                    result.release(), argument_types_, attr.is_window_function));
222
27
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
27
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
1.74k
                    [&](auto result_is_nullable) {
218
1.74k
                        if (attr.enable_aggregate_function_null_v2) {
219
26
                            result.reset(new NullableV2T<true, result_is_nullable,
220
26
                                                         AggregateFunctionTemplate>(
221
26
                                    result.release(), argument_types_, attr.is_window_function));
222
1.72k
                        } else {
223
1.72k
                            result.reset(new NullableT<true, result_is_nullable,
224
1.72k
                                                       AggregateFunctionTemplate>(
225
1.72k
                                    result.release(), argument_types_, attr.is_window_function));
226
1.72k
                        }
227
1.74k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
11
                    [&](auto result_is_nullable) {
218
11
                        if (attr.enable_aggregate_function_null_v2) {
219
11
                            result.reset(new NullableV2T<true, result_is_nullable,
220
11
                                                         AggregateFunctionTemplate>(
221
11
                                    result.release(), argument_types_, attr.is_window_function));
222
11
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
11
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Line
Count
Source
217
503
                    [&](auto result_is_nullable) {
218
503
                        if (attr.enable_aggregate_function_null_v2) {
219
82
                            result.reset(new NullableV2T<true, result_is_nullable,
220
82
                                                         AggregateFunctionTemplate>(
221
82
                                    result.release(), argument_types_, attr.is_window_function));
222
421
                        } else {
223
421
                            result.reset(new NullableT<true, result_is_nullable,
224
421
                                                       AggregateFunctionTemplate>(
225
421
                                    result.release(), argument_types_, attr.is_window_function));
226
421
                        }
227
503
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
519
                    [&](auto result_is_nullable) {
218
519
                        if (attr.enable_aggregate_function_null_v2) {
219
96
                            result.reset(new NullableV2T<true, result_is_nullable,
220
96
                                                         AggregateFunctionTemplate>(
221
96
                                    result.release(), argument_types_, attr.is_window_function));
222
423
                        } else {
223
423
                            result.reset(new NullableT<true, result_is_nullable,
224
423
                                                       AggregateFunctionTemplate>(
225
423
                                    result.release(), argument_types_, attr.is_window_function));
226
423
                        }
227
519
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
217
461
                    [&](auto result_is_nullable) {
218
461
                        if (attr.enable_aggregate_function_null_v2) {
219
38
                            result.reset(new NullableV2T<true, result_is_nullable,
220
38
                                                         AggregateFunctionTemplate>(
221
38
                                    result.release(), argument_types_, attr.is_window_function));
222
423
                        } else {
223
423
                            result.reset(new NullableT<true, result_is_nullable,
224
423
                                                       AggregateFunctionTemplate>(
225
423
                                    result.release(), argument_types_, attr.is_window_function));
226
423
                        }
227
461
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
217
25
                    [&](auto result_is_nullable) {
218
25
                        if (attr.enable_aggregate_function_null_v2) {
219
25
                            result.reset(new NullableV2T<true, result_is_nullable,
220
25
                                                         AggregateFunctionTemplate>(
221
25
                                    result.release(), argument_types_, attr.is_window_function));
222
25
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
447
                    [&](auto result_is_nullable) {
218
447
                        if (attr.enable_aggregate_function_null_v2) {
219
28
                            result.reset(new NullableV2T<true, result_is_nullable,
220
28
                                                         AggregateFunctionTemplate>(
221
28
                                    result.release(), argument_types_, attr.is_window_function));
222
419
                        } else {
223
419
                            result.reset(new NullableT<true, result_is_nullable,
224
419
                                                       AggregateFunctionTemplate>(
225
419
                                    result.release(), argument_types_, attr.is_window_function));
226
419
                        }
227
447
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
217
444
                    [&](auto result_is_nullable) {
218
444
                        if (attr.enable_aggregate_function_null_v2) {
219
25
                            result.reset(new NullableV2T<true, result_is_nullable,
220
25
                                                         AggregateFunctionTemplate>(
221
25
                                    result.release(), argument_types_, attr.is_window_function));
222
419
                        } else {
223
419
                            result.reset(new NullableT<true, result_is_nullable,
224
419
                                                       AggregateFunctionTemplate>(
225
419
                                    result.release(), argument_types_, attr.is_window_function));
226
419
                        }
227
444
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
217
11
                    [&](auto result_is_nullable) {
218
11
                        if (attr.enable_aggregate_function_null_v2) {
219
11
                            result.reset(new NullableV2T<true, result_is_nullable,
220
11
                                                         AggregateFunctionTemplate>(
221
11
                                    result.release(), argument_types_, attr.is_window_function));
222
11
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
11
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
228
10.1k
                    make_bool_variant(result_is_nullable));
229
10.1k
        }
230
10.4k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
10.4k
        return AggregateFunctionPtr(result.release());
232
10.4k
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
507
                                                       TArgs&&... args) {
209
507
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
507
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
507
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
507
        if (have_nullable(argument_types_)) {
216
494
            std::visit(
217
494
                    [&](auto result_is_nullable) {
218
494
                        if (attr.enable_aggregate_function_null_v2) {
219
494
                            result.reset(new NullableV2T<true, result_is_nullable,
220
494
                                                         AggregateFunctionTemplate>(
221
494
                                    result.release(), argument_types_, attr.is_window_function));
222
494
                        } else {
223
494
                            result.reset(new NullableT<true, result_is_nullable,
224
494
                                                       AggregateFunctionTemplate>(
225
494
                                    result.release(), argument_types_, attr.is_window_function));
226
494
                        }
227
494
                    },
228
494
                    make_bool_variant(result_is_nullable));
229
494
        }
230
507
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
507
        return AggregateFunctionPtr(result.release());
232
507
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
15
                                                       TArgs&&... args) {
209
15
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
15
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
15
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
15
        if (have_nullable(argument_types_)) {
216
15
            std::visit(
217
15
                    [&](auto result_is_nullable) {
218
15
                        if (attr.enable_aggregate_function_null_v2) {
219
15
                            result.reset(new NullableV2T<true, result_is_nullable,
220
15
                                                         AggregateFunctionTemplate>(
221
15
                                    result.release(), argument_types_, attr.is_window_function));
222
15
                        } else {
223
15
                            result.reset(new NullableT<true, result_is_nullable,
224
15
                                                       AggregateFunctionTemplate>(
225
15
                                    result.release(), argument_types_, attr.is_window_function));
226
15
                        }
227
15
                    },
228
15
                    make_bool_variant(result_is_nullable));
229
15
        }
230
15
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
15
        return AggregateFunctionPtr(result.release());
232
15
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
5
                                                       TArgs&&... args) {
209
5
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
5
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
5
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
5
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
5
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
5
        return AggregateFunctionPtr(result.release());
232
5
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
8
                                                       TArgs&&... args) {
209
8
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
8
        if (have_nullable(argument_types_)) {
216
8
            std::visit(
217
8
                    [&](auto result_is_nullable) {
218
8
                        if (attr.enable_aggregate_function_null_v2) {
219
8
                            result.reset(new NullableV2T<true, result_is_nullable,
220
8
                                                         AggregateFunctionTemplate>(
221
8
                                    result.release(), argument_types_, attr.is_window_function));
222
8
                        } else {
223
8
                            result.reset(new NullableT<true, result_is_nullable,
224
8
                                                       AggregateFunctionTemplate>(
225
8
                                    result.release(), argument_types_, attr.is_window_function));
226
8
                        }
227
8
                    },
228
8
                    make_bool_variant(result_is_nullable));
229
8
        }
230
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
8
        return AggregateFunctionPtr(result.release());
232
8
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
6
                                                       TArgs&&... args) {
209
6
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
6
        if (have_nullable(argument_types_)) {
216
6
            std::visit(
217
6
                    [&](auto result_is_nullable) {
218
6
                        if (attr.enable_aggregate_function_null_v2) {
219
6
                            result.reset(new NullableV2T<true, result_is_nullable,
220
6
                                                         AggregateFunctionTemplate>(
221
6
                                    result.release(), argument_types_, attr.is_window_function));
222
6
                        } else {
223
6
                            result.reset(new NullableT<true, result_is_nullable,
224
6
                                                       AggregateFunctionTemplate>(
225
6
                                    result.release(), argument_types_, attr.is_window_function));
226
6
                        }
227
6
                    },
228
6
                    make_bool_variant(result_is_nullable));
229
6
        }
230
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
6
        return AggregateFunctionPtr(result.release());
232
6
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
1.92k
                                                       TArgs&&... args) {
209
1.92k
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
1.92k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
1.92k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
1.92k
        if (have_nullable(argument_types_)) {
216
1.90k
            std::visit(
217
1.90k
                    [&](auto result_is_nullable) {
218
1.90k
                        if (attr.enable_aggregate_function_null_v2) {
219
1.90k
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1.90k
                                                         AggregateFunctionTemplate>(
221
1.90k
                                    result.release(), argument_types_, attr.is_window_function));
222
1.90k
                        } else {
223
1.90k
                            result.reset(new NullableT<true, result_is_nullable,
224
1.90k
                                                       AggregateFunctionTemplate>(
225
1.90k
                                    result.release(), argument_types_, attr.is_window_function));
226
1.90k
                        }
227
1.90k
                    },
228
1.90k
                    make_bool_variant(result_is_nullable));
229
1.90k
        }
230
1.92k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
1.92k
        return AggregateFunctionPtr(result.release());
232
1.92k
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
590
                                                       TArgs&&... args) {
209
590
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
590
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
590
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
590
        if (have_nullable(argument_types_)) {
216
590
            std::visit(
217
590
                    [&](auto result_is_nullable) {
218
590
                        if (attr.enable_aggregate_function_null_v2) {
219
590
                            result.reset(new NullableV2T<true, result_is_nullable,
220
590
                                                         AggregateFunctionTemplate>(
221
590
                                    result.release(), argument_types_, attr.is_window_function));
222
590
                        } else {
223
590
                            result.reset(new NullableT<true, result_is_nullable,
224
590
                                                       AggregateFunctionTemplate>(
225
590
                                    result.release(), argument_types_, attr.is_window_function));
226
590
                        }
227
590
                    },
228
590
                    make_bool_variant(result_is_nullable));
229
590
        }
230
590
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
590
        return AggregateFunctionPtr(result.release());
232
590
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
416
                                                       TArgs&&... args) {
209
416
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
416
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
416
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
416
        if (have_nullable(argument_types_)) {
216
415
            std::visit(
217
415
                    [&](auto result_is_nullable) {
218
415
                        if (attr.enable_aggregate_function_null_v2) {
219
415
                            result.reset(new NullableV2T<true, result_is_nullable,
220
415
                                                         AggregateFunctionTemplate>(
221
415
                                    result.release(), argument_types_, attr.is_window_function));
222
415
                        } else {
223
415
                            result.reset(new NullableT<true, result_is_nullable,
224
415
                                                       AggregateFunctionTemplate>(
225
415
                                    result.release(), argument_types_, attr.is_window_function));
226
415
                        }
227
415
                    },
228
415
                    make_bool_variant(result_is_nullable));
229
415
        }
230
416
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
416
        return AggregateFunctionPtr(result.release());
232
416
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
256
                                                       TArgs&&... args) {
209
256
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
256
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
256
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
256
        if (have_nullable(argument_types_)) {
216
256
            std::visit(
217
256
                    [&](auto result_is_nullable) {
218
256
                        if (attr.enable_aggregate_function_null_v2) {
219
256
                            result.reset(new NullableV2T<true, result_is_nullable,
220
256
                                                         AggregateFunctionTemplate>(
221
256
                                    result.release(), argument_types_, attr.is_window_function));
222
256
                        } else {
223
256
                            result.reset(new NullableT<true, result_is_nullable,
224
256
                                                       AggregateFunctionTemplate>(
225
256
                                    result.release(), argument_types_, attr.is_window_function));
226
256
                        }
227
256
                    },
228
256
                    make_bool_variant(result_is_nullable));
229
256
        }
230
256
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
256
        return AggregateFunctionPtr(result.release());
232
256
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
5
                                                       TArgs&&... args) {
209
5
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
5
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
5
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
5
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
5
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
5
        return AggregateFunctionPtr(result.release());
232
5
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
8
                                                       TArgs&&... args) {
209
8
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
8
        if (have_nullable(argument_types_)) {
216
8
            std::visit(
217
8
                    [&](auto result_is_nullable) {
218
8
                        if (attr.enable_aggregate_function_null_v2) {
219
8
                            result.reset(new NullableV2T<true, result_is_nullable,
220
8
                                                         AggregateFunctionTemplate>(
221
8
                                    result.release(), argument_types_, attr.is_window_function));
222
8
                        } else {
223
8
                            result.reset(new NullableT<true, result_is_nullable,
224
8
                                                       AggregateFunctionTemplate>(
225
8
                                    result.release(), argument_types_, attr.is_window_function));
226
8
                        }
227
8
                    },
228
8
                    make_bool_variant(result_is_nullable));
229
8
        }
230
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
8
        return AggregateFunctionPtr(result.release());
232
8
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
474
                                                       TArgs&&... args) {
209
474
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
474
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
474
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
474
        if (have_nullable(argument_types_)) {
216
453
            std::visit(
217
453
                    [&](auto result_is_nullable) {
218
453
                        if (attr.enable_aggregate_function_null_v2) {
219
453
                            result.reset(new NullableV2T<true, result_is_nullable,
220
453
                                                         AggregateFunctionTemplate>(
221
453
                                    result.release(), argument_types_, attr.is_window_function));
222
453
                        } else {
223
453
                            result.reset(new NullableT<true, result_is_nullable,
224
453
                                                       AggregateFunctionTemplate>(
225
453
                                    result.release(), argument_types_, attr.is_window_function));
226
453
                        }
227
453
                    },
228
453
                    make_bool_variant(result_is_nullable));
229
453
        }
230
474
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
474
        return AggregateFunctionPtr(result.release());
232
474
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
41
                                                       TArgs&&... args) {
209
41
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
41
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
41
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
41
        if (have_nullable(argument_types_)) {
216
25
            std::visit(
217
25
                    [&](auto result_is_nullable) {
218
25
                        if (attr.enable_aggregate_function_null_v2) {
219
25
                            result.reset(new NullableV2T<true, result_is_nullable,
220
25
                                                         AggregateFunctionTemplate>(
221
25
                                    result.release(), argument_types_, attr.is_window_function));
222
25
                        } else {
223
25
                            result.reset(new NullableT<true, result_is_nullable,
224
25
                                                       AggregateFunctionTemplate>(
225
25
                                    result.release(), argument_types_, attr.is_window_function));
226
25
                        }
227
25
                    },
228
25
                    make_bool_variant(result_is_nullable));
229
25
        }
230
41
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
41
        return AggregateFunctionPtr(result.release());
232
41
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
4
                                                       TArgs&&... args) {
209
4
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
4
        if (have_nullable(argument_types_)) {
216
4
            std::visit(
217
4
                    [&](auto result_is_nullable) {
218
4
                        if (attr.enable_aggregate_function_null_v2) {
219
4
                            result.reset(new NullableV2T<true, result_is_nullable,
220
4
                                                         AggregateFunctionTemplate>(
221
4
                                    result.release(), argument_types_, attr.is_window_function));
222
4
                        } else {
223
4
                            result.reset(new NullableT<true, result_is_nullable,
224
4
                                                       AggregateFunctionTemplate>(
225
4
                                    result.release(), argument_types_, attr.is_window_function));
226
4
                        }
227
4
                    },
228
4
                    make_bool_variant(result_is_nullable));
229
4
        }
230
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
4
        return AggregateFunctionPtr(result.release());
232
4
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
3
                                                       TArgs&&... args) {
209
3
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
3
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
3
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
3
        if (have_nullable(argument_types_)) {
216
3
            std::visit(
217
3
                    [&](auto result_is_nullable) {
218
3
                        if (attr.enable_aggregate_function_null_v2) {
219
3
                            result.reset(new NullableV2T<true, result_is_nullable,
220
3
                                                         AggregateFunctionTemplate>(
221
3
                                    result.release(), argument_types_, attr.is_window_function));
222
3
                        } else {
223
3
                            result.reset(new NullableT<true, result_is_nullable,
224
3
                                                       AggregateFunctionTemplate>(
225
3
                                    result.release(), argument_types_, attr.is_window_function));
226
3
                        }
227
3
                    },
228
3
                    make_bool_variant(result_is_nullable));
229
3
        }
230
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
3
        return AggregateFunctionPtr(result.release());
232
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
1
                                                       TArgs&&... args) {
209
1
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
1
        if (have_nullable(argument_types_)) {
216
1
            std::visit(
217
1
                    [&](auto result_is_nullable) {
218
1
                        if (attr.enable_aggregate_function_null_v2) {
219
1
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1
                                                         AggregateFunctionTemplate>(
221
1
                                    result.release(), argument_types_, attr.is_window_function));
222
1
                        } else {
223
1
                            result.reset(new NullableT<true, result_is_nullable,
224
1
                                                       AggregateFunctionTemplate>(
225
1
                                    result.release(), argument_types_, attr.is_window_function));
226
1
                        }
227
1
                    },
228
1
                    make_bool_variant(result_is_nullable));
229
1
        }
230
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
1
        return AggregateFunctionPtr(result.release());
232
1
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
430
                                                       TArgs&&... args) {
209
430
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
430
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
430
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
430
        if (have_nullable(argument_types_)) {
216
429
            std::visit(
217
429
                    [&](auto result_is_nullable) {
218
429
                        if (attr.enable_aggregate_function_null_v2) {
219
429
                            result.reset(new NullableV2T<true, result_is_nullable,
220
429
                                                         AggregateFunctionTemplate>(
221
429
                                    result.release(), argument_types_, attr.is_window_function));
222
429
                        } else {
223
429
                            result.reset(new NullableT<true, result_is_nullable,
224
429
                                                       AggregateFunctionTemplate>(
225
429
                                    result.release(), argument_types_, attr.is_window_function));
226
429
                        }
227
429
                    },
228
429
                    make_bool_variant(result_is_nullable));
229
429
        }
230
430
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
430
        return AggregateFunctionPtr(result.release());
232
430
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
1
                                                       TArgs&&... args) {
209
1
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
1
        if (have_nullable(argument_types_)) {
216
1
            std::visit(
217
1
                    [&](auto result_is_nullable) {
218
1
                        if (attr.enable_aggregate_function_null_v2) {
219
1
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1
                                                         AggregateFunctionTemplate>(
221
1
                                    result.release(), argument_types_, attr.is_window_function));
222
1
                        } else {
223
1
                            result.reset(new NullableT<true, result_is_nullable,
224
1
                                                       AggregateFunctionTemplate>(
225
1
                                    result.release(), argument_types_, attr.is_window_function));
226
1
                        }
227
1
                    },
228
1
                    make_bool_variant(result_is_nullable));
229
1
        }
230
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
1
        return AggregateFunctionPtr(result.release());
232
1
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
430
                                                       TArgs&&... args) {
209
430
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
430
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
430
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
430
        if (have_nullable(argument_types_)) {
216
428
            std::visit(
217
428
                    [&](auto result_is_nullable) {
218
428
                        if (attr.enable_aggregate_function_null_v2) {
219
428
                            result.reset(new NullableV2T<true, result_is_nullable,
220
428
                                                         AggregateFunctionTemplate>(
221
428
                                    result.release(), argument_types_, attr.is_window_function));
222
428
                        } else {
223
428
                            result.reset(new NullableT<true, result_is_nullable,
224
428
                                                       AggregateFunctionTemplate>(
225
428
                                    result.release(), argument_types_, attr.is_window_function));
226
428
                        }
227
428
                    },
228
428
                    make_bool_variant(result_is_nullable));
229
428
        }
230
430
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
430
        return AggregateFunctionPtr(result.release());
232
430
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
749
                                                       TArgs&&... args) {
209
749
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
749
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
749
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
749
        if (have_nullable(argument_types_)) {
216
734
            std::visit(
217
734
                    [&](auto result_is_nullable) {
218
734
                        if (attr.enable_aggregate_function_null_v2) {
219
734
                            result.reset(new NullableV2T<true, result_is_nullable,
220
734
                                                         AggregateFunctionTemplate>(
221
734
                                    result.release(), argument_types_, attr.is_window_function));
222
734
                        } else {
223
734
                            result.reset(new NullableT<true, result_is_nullable,
224
734
                                                       AggregateFunctionTemplate>(
225
734
                                    result.release(), argument_types_, attr.is_window_function));
226
734
                        }
227
734
                    },
228
734
                    make_bool_variant(result_is_nullable));
229
734
        }
230
749
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
749
        return AggregateFunctionPtr(result.release());
232
749
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
46
                                                       TArgs&&... args) {
209
46
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
46
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
46
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
46
        if (have_nullable(argument_types_)) {
216
38
            std::visit(
217
38
                    [&](auto result_is_nullable) {
218
38
                        if (attr.enable_aggregate_function_null_v2) {
219
38
                            result.reset(new NullableV2T<true, result_is_nullable,
220
38
                                                         AggregateFunctionTemplate>(
221
38
                                    result.release(), argument_types_, attr.is_window_function));
222
38
                        } else {
223
38
                            result.reset(new NullableT<true, result_is_nullable,
224
38
                                                       AggregateFunctionTemplate>(
225
38
                                    result.release(), argument_types_, attr.is_window_function));
226
38
                        }
227
38
                    },
228
38
                    make_bool_variant(result_is_nullable));
229
38
        }
230
46
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
46
        return AggregateFunctionPtr(result.release());
232
46
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
23
                                                       TArgs&&... args) {
209
23
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
23
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
23
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
23
        if (have_nullable(argument_types_)) {
216
17
            std::visit(
217
17
                    [&](auto result_is_nullable) {
218
17
                        if (attr.enable_aggregate_function_null_v2) {
219
17
                            result.reset(new NullableV2T<true, result_is_nullable,
220
17
                                                         AggregateFunctionTemplate>(
221
17
                                    result.release(), argument_types_, attr.is_window_function));
222
17
                        } else {
223
17
                            result.reset(new NullableT<true, result_is_nullable,
224
17
                                                       AggregateFunctionTemplate>(
225
17
                                    result.release(), argument_types_, attr.is_window_function));
226
17
                        }
227
17
                    },
228
17
                    make_bool_variant(result_is_nullable));
229
17
        }
230
23
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
23
        return AggregateFunctionPtr(result.release());
232
23
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
22
                                                       TArgs&&... args) {
209
22
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
22
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
22
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
22
        if (have_nullable(argument_types_)) {
216
20
            std::visit(
217
20
                    [&](auto result_is_nullable) {
218
20
                        if (attr.enable_aggregate_function_null_v2) {
219
20
                            result.reset(new NullableV2T<true, result_is_nullable,
220
20
                                                         AggregateFunctionTemplate>(
221
20
                                    result.release(), argument_types_, attr.is_window_function));
222
20
                        } else {
223
20
                            result.reset(new NullableT<true, result_is_nullable,
224
20
                                                       AggregateFunctionTemplate>(
225
20
                                    result.release(), argument_types_, attr.is_window_function));
226
20
                        }
227
20
                    },
228
20
                    make_bool_variant(result_is_nullable));
229
20
        }
230
22
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
22
        return AggregateFunctionPtr(result.release());
232
22
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
8
                                                       TArgs&&... args) {
209
8
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
8
        if (have_nullable(argument_types_)) {
216
6
            std::visit(
217
6
                    [&](auto result_is_nullable) {
218
6
                        if (attr.enable_aggregate_function_null_v2) {
219
6
                            result.reset(new NullableV2T<true, result_is_nullable,
220
6
                                                         AggregateFunctionTemplate>(
221
6
                                    result.release(), argument_types_, attr.is_window_function));
222
6
                        } else {
223
6
                            result.reset(new NullableT<true, result_is_nullable,
224
6
                                                       AggregateFunctionTemplate>(
225
6
                                    result.release(), argument_types_, attr.is_window_function));
226
6
                        }
227
6
                    },
228
6
                    make_bool_variant(result_is_nullable));
229
6
        }
230
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
8
        return AggregateFunctionPtr(result.release());
232
8
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
20
                                                       TArgs&&... args) {
209
20
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
20
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
20
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
20
        if (have_nullable(argument_types_)) {
216
20
            std::visit(
217
20
                    [&](auto result_is_nullable) {
218
20
                        if (attr.enable_aggregate_function_null_v2) {
219
20
                            result.reset(new NullableV2T<true, result_is_nullable,
220
20
                                                         AggregateFunctionTemplate>(
221
20
                                    result.release(), argument_types_, attr.is_window_function));
222
20
                        } else {
223
20
                            result.reset(new NullableT<true, result_is_nullable,
224
20
                                                       AggregateFunctionTemplate>(
225
20
                                    result.release(), argument_types_, attr.is_window_function));
226
20
                        }
227
20
                    },
228
20
                    make_bool_variant(result_is_nullable));
229
20
        }
230
20
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
20
        return AggregateFunctionPtr(result.release());
232
20
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
31
                                                       TArgs&&... args) {
209
31
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
31
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
31
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
31
        if (have_nullable(argument_types_)) {
216
27
            std::visit(
217
27
                    [&](auto result_is_nullable) {
218
27
                        if (attr.enable_aggregate_function_null_v2) {
219
27
                            result.reset(new NullableV2T<true, result_is_nullable,
220
27
                                                         AggregateFunctionTemplate>(
221
27
                                    result.release(), argument_types_, attr.is_window_function));
222
27
                        } else {
223
27
                            result.reset(new NullableT<true, result_is_nullable,
224
27
                                                       AggregateFunctionTemplate>(
225
27
                                    result.release(), argument_types_, attr.is_window_function));
226
27
                        }
227
27
                    },
228
27
                    make_bool_variant(result_is_nullable));
229
27
        }
230
31
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
31
        return AggregateFunctionPtr(result.release());
232
31
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
1.75k
                                                       TArgs&&... args) {
209
1.75k
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
1.75k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
1.75k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
1.75k
        if (have_nullable(argument_types_)) {
216
1.74k
            std::visit(
217
1.74k
                    [&](auto result_is_nullable) {
218
1.74k
                        if (attr.enable_aggregate_function_null_v2) {
219
1.74k
                            result.reset(new NullableV2T<true, result_is_nullable,
220
1.74k
                                                         AggregateFunctionTemplate>(
221
1.74k
                                    result.release(), argument_types_, attr.is_window_function));
222
1.74k
                        } else {
223
1.74k
                            result.reset(new NullableT<true, result_is_nullable,
224
1.74k
                                                       AggregateFunctionTemplate>(
225
1.74k
                                    result.release(), argument_types_, attr.is_window_function));
226
1.74k
                        }
227
1.74k
                    },
228
1.74k
                    make_bool_variant(result_is_nullable));
229
1.74k
        }
230
1.75k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
1.75k
        return AggregateFunctionPtr(result.release());
232
1.75k
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
2
                                                       TArgs&&... args) {
209
2
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
2
        if (have_nullable(argument_types_)) {
216
2
            std::visit(
217
2
                    [&](auto result_is_nullable) {
218
2
                        if (attr.enable_aggregate_function_null_v2) {
219
2
                            result.reset(new NullableV2T<true, result_is_nullable,
220
2
                                                         AggregateFunctionTemplate>(
221
2
                                    result.release(), argument_types_, attr.is_window_function));
222
2
                        } else {
223
2
                            result.reset(new NullableT<true, result_is_nullable,
224
2
                                                       AggregateFunctionTemplate>(
225
2
                                    result.release(), argument_types_, attr.is_window_function));
226
2
                        }
227
2
                    },
228
2
                    make_bool_variant(result_is_nullable));
229
2
        }
230
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
2
        return AggregateFunctionPtr(result.release());
232
2
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
11
                                                       TArgs&&... args) {
209
11
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
11
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
11
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
11
        if (have_nullable(argument_types_)) {
216
11
            std::visit(
217
11
                    [&](auto result_is_nullable) {
218
11
                        if (attr.enable_aggregate_function_null_v2) {
219
11
                            result.reset(new NullableV2T<true, result_is_nullable,
220
11
                                                         AggregateFunctionTemplate>(
221
11
                                    result.release(), argument_types_, attr.is_window_function));
222
11
                        } else {
223
11
                            result.reset(new NullableT<true, result_is_nullable,
224
11
                                                       AggregateFunctionTemplate>(
225
11
                                    result.release(), argument_types_, attr.is_window_function));
226
11
                        }
227
11
                    },
228
11
                    make_bool_variant(result_is_nullable));
229
11
        }
230
11
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
11
        return AggregateFunctionPtr(result.release());
232
11
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
533
                                                       TArgs&&... args) {
209
533
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
533
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
533
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
533
        if (have_nullable(argument_types_)) {
216
503
            std::visit(
217
503
                    [&](auto result_is_nullable) {
218
503
                        if (attr.enable_aggregate_function_null_v2) {
219
503
                            result.reset(new NullableV2T<true, result_is_nullable,
220
503
                                                         AggregateFunctionTemplate>(
221
503
                                    result.release(), argument_types_, attr.is_window_function));
222
503
                        } else {
223
503
                            result.reset(new NullableT<true, result_is_nullable,
224
503
                                                       AggregateFunctionTemplate>(
225
503
                                    result.release(), argument_types_, attr.is_window_function));
226
503
                        }
227
503
                    },
228
503
                    make_bool_variant(result_is_nullable));
229
503
        }
230
533
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
533
        return AggregateFunctionPtr(result.release());
232
533
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
581
                                                       TArgs&&... args) {
209
581
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
581
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
581
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
581
        if (have_nullable(argument_types_)) {
216
519
            std::visit(
217
519
                    [&](auto result_is_nullable) {
218
519
                        if (attr.enable_aggregate_function_null_v2) {
219
519
                            result.reset(new NullableV2T<true, result_is_nullable,
220
519
                                                         AggregateFunctionTemplate>(
221
519
                                    result.release(), argument_types_, attr.is_window_function));
222
519
                        } else {
223
519
                            result.reset(new NullableT<true, result_is_nullable,
224
519
                                                       AggregateFunctionTemplate>(
225
519
                                    result.release(), argument_types_, attr.is_window_function));
226
519
                        }
227
519
                    },
228
519
                    make_bool_variant(result_is_nullable));
229
519
        }
230
581
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
581
        return AggregateFunctionPtr(result.release());
232
581
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
468
                                                       TArgs&&... args) {
209
468
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
468
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
468
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
468
        if (have_nullable(argument_types_)) {
216
461
            std::visit(
217
461
                    [&](auto result_is_nullable) {
218
461
                        if (attr.enable_aggregate_function_null_v2) {
219
461
                            result.reset(new NullableV2T<true, result_is_nullable,
220
461
                                                         AggregateFunctionTemplate>(
221
461
                                    result.release(), argument_types_, attr.is_window_function));
222
461
                        } else {
223
461
                            result.reset(new NullableT<true, result_is_nullable,
224
461
                                                       AggregateFunctionTemplate>(
225
461
                                    result.release(), argument_types_, attr.is_window_function));
226
461
                        }
227
461
                    },
228
461
                    make_bool_variant(result_is_nullable));
229
461
        }
230
468
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
468
        return AggregateFunctionPtr(result.release());
232
468
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
26
                                                       TArgs&&... args) {
209
26
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
26
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
26
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
26
        if (have_nullable(argument_types_)) {
216
25
            std::visit(
217
25
                    [&](auto result_is_nullable) {
218
25
                        if (attr.enable_aggregate_function_null_v2) {
219
25
                            result.reset(new NullableV2T<true, result_is_nullable,
220
25
                                                         AggregateFunctionTemplate>(
221
25
                                    result.release(), argument_types_, attr.is_window_function));
222
25
                        } else {
223
25
                            result.reset(new NullableT<true, result_is_nullable,
224
25
                                                       AggregateFunctionTemplate>(
225
25
                                    result.release(), argument_types_, attr.is_window_function));
226
25
                        }
227
25
                    },
228
25
                    make_bool_variant(result_is_nullable));
229
25
        }
230
26
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
26
        return AggregateFunctionPtr(result.release());
232
26
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
456
                                                       TArgs&&... args) {
209
456
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
456
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
456
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
456
        if (have_nullable(argument_types_)) {
216
448
            std::visit(
217
448
                    [&](auto result_is_nullable) {
218
448
                        if (attr.enable_aggregate_function_null_v2) {
219
448
                            result.reset(new NullableV2T<true, result_is_nullable,
220
448
                                                         AggregateFunctionTemplate>(
221
448
                                    result.release(), argument_types_, attr.is_window_function));
222
448
                        } else {
223
448
                            result.reset(new NullableT<true, result_is_nullable,
224
448
                                                       AggregateFunctionTemplate>(
225
448
                                    result.release(), argument_types_, attr.is_window_function));
226
448
                        }
227
448
                    },
228
448
                    make_bool_variant(result_is_nullable));
229
448
        }
230
456
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
456
        return AggregateFunctionPtr(result.release());
232
456
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
452
                                                       TArgs&&... args) {
209
452
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
452
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
452
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
452
        if (have_nullable(argument_types_)) {
216
444
            std::visit(
217
444
                    [&](auto result_is_nullable) {
218
444
                        if (attr.enable_aggregate_function_null_v2) {
219
444
                            result.reset(new NullableV2T<true, result_is_nullable,
220
444
                                                         AggregateFunctionTemplate>(
221
444
                                    result.release(), argument_types_, attr.is_window_function));
222
444
                        } else {
223
444
                            result.reset(new NullableT<true, result_is_nullable,
224
444
                                                       AggregateFunctionTemplate>(
225
444
                                    result.release(), argument_types_, attr.is_window_function));
226
444
                        }
227
444
                    },
228
444
                    make_bool_variant(result_is_nullable));
229
444
        }
230
452
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
452
        return AggregateFunctionPtr(result.release());
232
452
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
13
                                                       TArgs&&... args) {
209
13
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
13
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
13
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
13
        if (have_nullable(argument_types_)) {
216
11
            std::visit(
217
11
                    [&](auto result_is_nullable) {
218
11
                        if (attr.enable_aggregate_function_null_v2) {
219
11
                            result.reset(new NullableV2T<true, result_is_nullable,
220
11
                                                         AggregateFunctionTemplate>(
221
11
                                    result.release(), argument_types_, attr.is_window_function));
222
11
                        } else {
223
11
                            result.reset(new NullableT<true, result_is_nullable,
224
11
                                                       AggregateFunctionTemplate>(
225
11
                                    result.release(), argument_types_, attr.is_window_function));
226
11
                        }
227
11
                    },
228
11
                    make_bool_variant(result_is_nullable));
229
11
        }
230
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
13
        return AggregateFunctionPtr(result.release());
232
13
    }
_ZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
208
12
                                                       TArgs&&... args) {
209
12
        if (!(argument_types_.size() > 1)) {
210
0
            throw doris::Exception(Status::InternalError(
211
0
                    "create_multi_arguments: argument_types_ size must be > 1"));
212
0
        }
213
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
214
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
215
12
        if (have_nullable(argument_types_)) {
216
0
            std::visit(
217
0
                    [&](auto result_is_nullable) {
218
0
                        if (attr.enable_aggregate_function_null_v2) {
219
0
                            result.reset(new NullableV2T<true, result_is_nullable,
220
0
                                                         AggregateFunctionTemplate>(
221
0
                                    result.release(), argument_types_, attr.is_window_function));
222
0
                        } else {
223
0
                            result.reset(new NullableT<true, result_is_nullable,
224
0
                                                       AggregateFunctionTemplate>(
225
0
                                    result.release(), argument_types_, attr.is_window_function));
226
0
                        }
227
0
                    },
228
0
                    make_bool_variant(result_is_nullable));
229
0
        }
230
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
231
12
        return AggregateFunctionPtr(result.release());
232
12
    }
233
234
    template <typename AggregateFunctionTemplate, typename... TArgs>
235
    static AggregateFunctionPtr create_multi_arguments_return_not_nullable(
236
            const DataTypes& argument_types_, const bool result_is_nullable,
237
1.10k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1.10k
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1.10k
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1.10k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1.10k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1.10k
        if (have_nullable(argument_types_)) {
251
1.00k
            if (attr.enable_aggregate_function_null_v2) {
252
164
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
164
                        result.release(), argument_types_, attr.is_window_function));
254
844
            } else {
255
844
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
844
                        result.release(), argument_types_, attr.is_window_function));
257
844
            }
258
1.00k
        }
259
1.10k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1.10k
        return AggregateFunctionPtr(result.release());
261
1.10k
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
4
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
4
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
4
        if (have_nullable(argument_types_)) {
251
4
            if (attr.enable_aggregate_function_null_v2) {
252
4
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
4
                        result.release(), argument_types_, attr.is_window_function));
254
4
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
4
        }
259
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
4
        return AggregateFunctionPtr(result.release());
261
4
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
6
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
6
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
6
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
6
        if (have_nullable(argument_types_)) {
251
6
            if (attr.enable_aggregate_function_null_v2) {
252
6
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
6
                        result.release(), argument_types_, attr.is_window_function));
254
6
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
6
        }
259
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
6
        return AggregateFunctionPtr(result.release());
261
6
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
468
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
468
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
468
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
468
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
468
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
468
        if (have_nullable(argument_types_)) {
251
462
            if (attr.enable_aggregate_function_null_v2) {
252
39
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
39
                        result.release(), argument_types_, attr.is_window_function));
254
423
            } else {
255
423
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
423
                        result.release(), argument_types_, attr.is_window_function));
257
423
            }
258
462
        }
259
468
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
468
        return AggregateFunctionPtr(result.release());
261
468
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
12
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
12
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
12
        if (have_nullable(argument_types_)) {
251
12
            if (attr.enable_aggregate_function_null_v2) {
252
12
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
12
                        result.release(), argument_types_, attr.is_window_function));
254
12
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
12
        }
259
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
12
        return AggregateFunctionPtr(result.release());
261
12
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
4
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
4
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
4
        if (have_nullable(argument_types_)) {
251
4
            if (attr.enable_aggregate_function_null_v2) {
252
4
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
4
                        result.release(), argument_types_, attr.is_window_function));
254
4
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
4
        }
259
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
4
        return AggregateFunctionPtr(result.release());
261
4
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
2
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
2
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
2
        if (have_nullable(argument_types_)) {
251
2
            if (attr.enable_aggregate_function_null_v2) {
252
2
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
2
                        result.release(), argument_types_, attr.is_window_function));
254
2
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
2
        }
259
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
2
        return AggregateFunctionPtr(result.release());
261
2
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
13
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
13
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
13
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
13
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
13
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
13
        if (have_nullable(argument_types_)) {
251
13
            if (attr.enable_aggregate_function_null_v2) {
252
13
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
13
                        result.release(), argument_types_, attr.is_window_function));
254
13
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
13
        }
259
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
13
        return AggregateFunctionPtr(result.release());
261
13
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
3
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
3
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
3
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
3
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
3
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
3
        if (have_nullable(argument_types_)) {
251
2
            if (attr.enable_aggregate_function_null_v2) {
252
2
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
2
                        result.release(), argument_types_, attr.is_window_function));
254
2
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
2
        }
259
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
3
        return AggregateFunctionPtr(result.release());
261
3
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
1
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
1
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
1
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
1
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
1
        return AggregateFunctionPtr(result.release());
261
1
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
451
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
451
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
451
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
451
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
451
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
451
        if (have_nullable(argument_types_)) {
251
437
            if (attr.enable_aggregate_function_null_v2) {
252
16
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
16
                        result.release(), argument_types_, attr.is_window_function));
254
421
            } else {
255
421
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
421
                        result.release(), argument_types_, attr.is_window_function));
257
421
            }
258
437
        }
259
451
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
451
        return AggregateFunctionPtr(result.release());
261
451
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
2
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
2
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
2
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
2
        return AggregateFunctionPtr(result.release());
261
2
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
21
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
21
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
21
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
21
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
21
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
21
        if (have_nullable(argument_types_)) {
251
11
            if (attr.enable_aggregate_function_null_v2) {
252
11
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
11
                        result.release(), argument_types_, attr.is_window_function));
254
11
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
11
        }
259
21
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
21
        return AggregateFunctionPtr(result.release());
261
21
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
2
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
2
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
2
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
2
        return AggregateFunctionPtr(result.release());
261
2
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
2
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
2
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
2
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
2
        return AggregateFunctionPtr(result.release());
261
2
    }
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
237
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
238
2
        if (!(argument_types_.size() > 1)) {
239
0
            throw doris::Exception(
240
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
241
0
                                          "argument_types_ size must be > 1"));
242
0
        }
243
2
        if (!attr.is_foreach && result_is_nullable) {
244
0
            throw doris::Exception(
245
0
                    Status::InternalError("create_multi_arguments_return_not_nullable: "
246
0
                                          "result_is_nullable must be false"));
247
0
        }
248
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
249
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
250
2
        if (have_nullable(argument_types_)) {
251
0
            if (attr.enable_aggregate_function_null_v2) {
252
0
                result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>(
253
0
                        result.release(), argument_types_, attr.is_window_function));
254
0
            } else {
255
0
                result.reset(new NullableT<true, false, AggregateFunctionTemplate>(
256
0
                        result.release(), argument_types_, attr.is_window_function));
257
0
            }
258
0
        }
259
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
260
2
        return AggregateFunctionPtr(result.release());
261
2
    }
262
263
    template <typename AggregateFunctionTemplate, typename... TArgs>
264
    static AggregateFunctionPtr create_unary_arguments(const DataTypes& argument_types_,
265
                                                       const bool result_is_nullable,
266
                                                       const AggregateFunctionAttr& attr,
267
109k
                                                       TArgs&&... args) {
268
109k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
109k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
109k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
109k
        if (have_nullable(argument_types_)) {
275
59.9k
            std::visit(
276
59.9k
                    [&](auto result_is_nullable) {
277
59.9k
                        if (attr.enable_aggregate_function_null_v2) {
278
38.9k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
38.9k
                                                         AggregateFunctionTemplate>(
280
38.9k
                                    result.release(), argument_types_, attr.is_window_function));
281
38.9k
                        } else {
282
21.0k
                            result.reset(new NullableT<false, result_is_nullable,
283
21.0k
                                                       AggregateFunctionTemplate>(
284
21.0k
                                    result.release(), argument_types_, attr.is_window_function));
285
21.0k
                        }
286
59.9k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
893
                    [&](auto result_is_nullable) {
277
893
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
893
                        } else {
282
893
                            result.reset(new NullableT<false, result_is_nullable,
283
893
                                                       AggregateFunctionTemplate>(
284
893
                                    result.release(), argument_types_, attr.is_window_function));
285
893
                        }
286
893
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
7
                    [&](auto result_is_nullable) {
277
7
                        if (attr.enable_aggregate_function_null_v2) {
278
7
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7
                                                         AggregateFunctionTemplate>(
280
7
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
7
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
63
                    [&](auto result_is_nullable) {
277
63
                        if (attr.enable_aggregate_function_null_v2) {
278
63
                            result.reset(new NullableV2T<false, result_is_nullable,
279
63
                                                         AggregateFunctionTemplate>(
280
63
                                    result.release(), argument_types_, attr.is_window_function));
281
63
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
63
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
658
                    [&](auto result_is_nullable) {
277
658
                        if (attr.enable_aggregate_function_null_v2) {
278
636
                            result.reset(new NullableV2T<false, result_is_nullable,
279
636
                                                         AggregateFunctionTemplate>(
280
636
                                    result.release(), argument_types_, attr.is_window_function));
281
636
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
658
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
6
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
1
                    [&](auto result_is_nullable) {
277
1
                        if (attr.enable_aggregate_function_null_v2) {
278
1
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1
                                                         AggregateFunctionTemplate>(
280
1
                                    result.release(), argument_types_, attr.is_window_function));
281
1
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
1
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
487
                    [&](auto result_is_nullable) {
277
487
                        if (attr.enable_aggregate_function_null_v2) {
278
362
                            result.reset(new NullableV2T<false, result_is_nullable,
279
362
                                                         AggregateFunctionTemplate>(
280
362
                                    result.release(), argument_types_, attr.is_window_function));
281
362
                        } else {
282
125
                            result.reset(new NullableT<false, result_is_nullable,
283
125
                                                       AggregateFunctionTemplate>(
284
125
                                    result.release(), argument_types_, attr.is_window_function));
285
125
                        }
286
487
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
9
                    [&](auto result_is_nullable) {
277
9
                        if (attr.enable_aggregate_function_null_v2) {
278
9
                            result.reset(new NullableV2T<false, result_is_nullable,
279
9
                                                         AggregateFunctionTemplate>(
280
9
                                    result.release(), argument_types_, attr.is_window_function));
281
9
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
9
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
1
                    [&](auto result_is_nullable) {
277
1
                        if (attr.enable_aggregate_function_null_v2) {
278
1
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1
                                                         AggregateFunctionTemplate>(
280
1
                                    result.release(), argument_types_, attr.is_window_function));
281
1
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
1
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
140
                    [&](auto result_is_nullable) {
277
140
                        if (attr.enable_aggregate_function_null_v2) {
278
36
                            result.reset(new NullableV2T<false, result_is_nullable,
279
36
                                                         AggregateFunctionTemplate>(
280
36
                                    result.release(), argument_types_, attr.is_window_function));
281
104
                        } else {
282
104
                            result.reset(new NullableT<false, result_is_nullable,
283
104
                                                       AggregateFunctionTemplate>(
284
104
                                    result.release(), argument_types_, attr.is_window_function));
285
104
                        }
286
140
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
10
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
143
                    [&](auto result_is_nullable) {
277
143
                        if (attr.enable_aggregate_function_null_v2) {
278
83
                            result.reset(new NullableV2T<false, result_is_nullable,
279
83
                                                         AggregateFunctionTemplate>(
280
83
                                    result.release(), argument_types_, attr.is_window_function));
281
83
                        } else {
282
60
                            result.reset(new NullableT<false, result_is_nullable,
283
60
                                                       AggregateFunctionTemplate>(
284
60
                                    result.release(), argument_types_, attr.is_window_function));
285
60
                        }
286
143
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
9
                    [&](auto result_is_nullable) {
277
9
                        if (attr.enable_aggregate_function_null_v2) {
278
9
                            result.reset(new NullableV2T<false, result_is_nullable,
279
9
                                                         AggregateFunctionTemplate>(
280
9
                                    result.release(), argument_types_, attr.is_window_function));
281
9
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
9
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
61
                    [&](auto result_is_nullable) {
277
61
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
36
                        } else {
282
36
                            result.reset(new NullableT<false, result_is_nullable,
283
36
                                                       AggregateFunctionTemplate>(
284
36
                                    result.release(), argument_types_, attr.is_window_function));
285
36
                        }
286
61
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
441
                    [&](auto result_is_nullable) {
277
441
                        if (attr.enable_aggregate_function_null_v2) {
278
23
                            result.reset(new NullableV2T<false, result_is_nullable,
279
23
                                                         AggregateFunctionTemplate>(
280
23
                                    result.release(), argument_types_, attr.is_window_function));
281
418
                        } else {
282
418
                            result.reset(new NullableT<false, result_is_nullable,
283
418
                                                       AggregateFunctionTemplate>(
284
418
                                    result.release(), argument_types_, attr.is_window_function));
285
418
                        }
286
441
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
3.86k
                    [&](auto result_is_nullable) {
277
3.86k
                        if (attr.enable_aggregate_function_null_v2) {
278
3.19k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
3.19k
                                                         AggregateFunctionTemplate>(
280
3.19k
                                    result.release(), argument_types_, attr.is_window_function));
281
3.19k
                        } else {
282
672
                            result.reset(new NullableT<false, result_is_nullable,
283
672
                                                       AggregateFunctionTemplate>(
284
672
                                    result.release(), argument_types_, attr.is_window_function));
285
672
                        }
286
3.86k
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
8
                    [&](auto result_is_nullable) {
277
8
                        if (attr.enable_aggregate_function_null_v2) {
278
8
                            result.reset(new NullableV2T<false, result_is_nullable,
279
8
                                                         AggregateFunctionTemplate>(
280
8
                                    result.release(), argument_types_, attr.is_window_function));
281
8
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
8
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
2.46k
                    [&](auto result_is_nullable) {
277
2.46k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.00k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.00k
                                                         AggregateFunctionTemplate>(
280
1.00k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.45k
                        } else {
282
1.45k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.45k
                                                       AggregateFunctionTemplate>(
284
1.45k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.45k
                        }
286
2.46k
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
7
                    [&](auto result_is_nullable) {
277
7
                        if (attr.enable_aggregate_function_null_v2) {
278
7
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7
                                                         AggregateFunctionTemplate>(
280
7
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
7
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
706
                    [&](auto result_is_nullable) {
277
706
                        if (attr.enable_aggregate_function_null_v2) {
278
51
                            result.reset(new NullableV2T<false, result_is_nullable,
279
51
                                                         AggregateFunctionTemplate>(
280
51
                                    result.release(), argument_types_, attr.is_window_function));
281
655
                        } else {
282
655
                            result.reset(new NullableT<false, result_is_nullable,
283
655
                                                       AggregateFunctionTemplate>(
284
655
                                    result.release(), argument_types_, attr.is_window_function));
285
655
                        }
286
706
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
70
                    [&](auto result_is_nullable) {
277
70
                        if (attr.enable_aggregate_function_null_v2) {
278
30
                            result.reset(new NullableV2T<false, result_is_nullable,
279
30
                                                         AggregateFunctionTemplate>(
280
30
                                    result.release(), argument_types_, attr.is_window_function));
281
40
                        } else {
282
40
                            result.reset(new NullableT<false, result_is_nullable,
283
40
                                                       AggregateFunctionTemplate>(
284
40
                                    result.release(), argument_types_, attr.is_window_function));
285
40
                        }
286
70
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
7
                    [&](auto result_is_nullable) {
277
7
                        if (attr.enable_aggregate_function_null_v2) {
278
7
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7
                                                         AggregateFunctionTemplate>(
280
7
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
7
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
1.43k
                    [&](auto result_is_nullable) {
277
1.43k
                        if (attr.enable_aggregate_function_null_v2) {
278
262
                            result.reset(new NullableV2T<false, result_is_nullable,
279
262
                                                         AggregateFunctionTemplate>(
280
262
                                    result.release(), argument_types_, attr.is_window_function));
281
1.17k
                        } else {
282
1.17k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.17k
                                                       AggregateFunctionTemplate>(
284
1.17k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.17k
                        }
286
1.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
276
2.45k
                    [&](auto result_is_nullable) {
277
2.45k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.42k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.42k
                                                         AggregateFunctionTemplate>(
280
2.42k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.42k
                        } else {
282
24
                            result.reset(new NullableT<false, result_is_nullable,
283
24
                                                       AggregateFunctionTemplate>(
284
24
                                    result.release(), argument_types_, attr.is_window_function));
285
24
                        }
286
2.45k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.51k
                    [&](auto result_is_nullable) {
277
1.51k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.40k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.40k
                                                         AggregateFunctionTemplate>(
280
1.40k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.40k
                        } else {
282
112
                            result.reset(new NullableT<false, result_is_nullable,
283
112
                                                       AggregateFunctionTemplate>(
284
112
                                    result.release(), argument_types_, attr.is_window_function));
285
112
                        }
286
1.51k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
417
                    [&](auto result_is_nullable) {
277
417
                        if (attr.enable_aggregate_function_null_v2) {
278
288
                            result.reset(new NullableV2T<false, result_is_nullable,
279
288
                                                         AggregateFunctionTemplate>(
280
288
                                    result.release(), argument_types_, attr.is_window_function));
281
288
                        } else {
282
129
                            result.reset(new NullableT<false, result_is_nullable,
283
129
                                                       AggregateFunctionTemplate>(
284
129
                                    result.release(), argument_types_, attr.is_window_function));
285
129
                        }
286
417
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.59k
                    [&](auto result_is_nullable) {
277
1.59k
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
1.59k
                        } else {
282
1.59k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.59k
                                                       AggregateFunctionTemplate>(
284
1.59k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.59k
                        }
286
1.59k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
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
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
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
276
107
                    [&](auto result_is_nullable) {
277
107
                        if (attr.enable_aggregate_function_null_v2) {
278
68
                            result.reset(new NullableV2T<false, result_is_nullable,
279
68
                                                         AggregateFunctionTemplate>(
280
68
                                    result.release(), argument_types_, attr.is_window_function));
281
68
                        } else {
282
39
                            result.reset(new NullableT<false, result_is_nullable,
283
39
                                                       AggregateFunctionTemplate>(
284
39
                                    result.release(), argument_types_, attr.is_window_function));
285
39
                        }
286
107
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
470
                    [&](auto result_is_nullable) {
277
470
                        if (attr.enable_aggregate_function_null_v2) {
278
182
                            result.reset(new NullableV2T<false, result_is_nullable,
279
182
                                                         AggregateFunctionTemplate>(
280
182
                                    result.release(), argument_types_, attr.is_window_function));
281
288
                        } else {
282
288
                            result.reset(new NullableT<false, result_is_nullable,
283
288
                                                       AggregateFunctionTemplate>(
284
288
                                    result.release(), argument_types_, attr.is_window_function));
285
288
                        }
286
470
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
318
                    [&](auto result_is_nullable) {
277
318
                        if (attr.enable_aggregate_function_null_v2) {
278
119
                            result.reset(new NullableV2T<false, result_is_nullable,
279
119
                                                         AggregateFunctionTemplate>(
280
119
                                    result.release(), argument_types_, attr.is_window_function));
281
199
                        } else {
282
199
                            result.reset(new NullableT<false, result_is_nullable,
283
199
                                                       AggregateFunctionTemplate>(
284
199
                                    result.release(), argument_types_, attr.is_window_function));
285
199
                        }
286
318
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
7.52k
                    [&](auto result_is_nullable) {
277
7.52k
                        if (attr.enable_aggregate_function_null_v2) {
278
6.66k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6.66k
                                                         AggregateFunctionTemplate>(
280
6.66k
                                    result.release(), argument_types_, attr.is_window_function));
281
6.66k
                        } else {
282
859
                            result.reset(new NullableT<false, result_is_nullable,
283
859
                                                       AggregateFunctionTemplate>(
284
859
                                    result.release(), argument_types_, attr.is_window_function));
285
859
                        }
286
7.52k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2.48k
                    [&](auto result_is_nullable) {
277
2.48k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.26k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.26k
                                                         AggregateFunctionTemplate>(
280
2.26k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.26k
                        } else {
282
216
                            result.reset(new NullableT<false, result_is_nullable,
283
216
                                                       AggregateFunctionTemplate>(
284
216
                                    result.release(), argument_types_, attr.is_window_function));
285
216
                        }
286
2.48k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
389
                    [&](auto result_is_nullable) {
277
389
                        if (attr.enable_aggregate_function_null_v2) {
278
113
                            result.reset(new NullableV2T<false, result_is_nullable,
279
113
                                                         AggregateFunctionTemplate>(
280
113
                                    result.release(), argument_types_, attr.is_window_function));
281
276
                        } else {
282
276
                            result.reset(new NullableT<false, result_is_nullable,
283
276
                                                       AggregateFunctionTemplate>(
284
276
                                    result.release(), argument_types_, attr.is_window_function));
285
276
                        }
286
389
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
284
                    [&](auto result_is_nullable) {
277
284
                        if (attr.enable_aggregate_function_null_v2) {
278
88
                            result.reset(new NullableV2T<false, result_is_nullable,
279
88
                                                         AggregateFunctionTemplate>(
280
88
                                    result.release(), argument_types_, attr.is_window_function));
281
196
                        } else {
282
196
                            result.reset(new NullableT<false, result_is_nullable,
283
196
                                                       AggregateFunctionTemplate>(
284
196
                                    result.release(), argument_types_, attr.is_window_function));
285
196
                        }
286
284
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
544
                    [&](auto result_is_nullable) {
277
544
                        if (attr.enable_aggregate_function_null_v2) {
278
144
                            result.reset(new NullableV2T<false, result_is_nullable,
279
144
                                                         AggregateFunctionTemplate>(
280
144
                                    result.release(), argument_types_, attr.is_window_function));
281
400
                        } else {
282
400
                            result.reset(new NullableT<false, result_is_nullable,
283
400
                                                       AggregateFunctionTemplate>(
284
400
                                    result.release(), argument_types_, attr.is_window_function));
285
400
                        }
286
544
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
131
                    [&](auto result_is_nullable) {
277
131
                        if (attr.enable_aggregate_function_null_v2) {
278
77
                            result.reset(new NullableV2T<false, result_is_nullable,
279
77
                                                         AggregateFunctionTemplate>(
280
77
                                    result.release(), argument_types_, attr.is_window_function));
281
77
                        } else {
282
54
                            result.reset(new NullableT<false, result_is_nullable,
283
54
                                                       AggregateFunctionTemplate>(
284
54
                                    result.release(), argument_types_, attr.is_window_function));
285
54
                        }
286
131
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.53k
                    [&](auto result_is_nullable) {
277
1.53k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.49k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.49k
                                                         AggregateFunctionTemplate>(
280
1.49k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.49k
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
1.53k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
629
                    [&](auto result_is_nullable) {
277
629
                        if (attr.enable_aggregate_function_null_v2) {
278
586
                            result.reset(new NullableV2T<false, result_is_nullable,
279
586
                                                         AggregateFunctionTemplate>(
280
586
                                    result.release(), argument_types_, attr.is_window_function));
281
586
                        } else {
282
43
                            result.reset(new NullableT<false, result_is_nullable,
283
43
                                                       AggregateFunctionTemplate>(
284
43
                                    result.release(), argument_types_, attr.is_window_function));
285
43
                        }
286
629
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
35
                            result.reset(new NullableV2T<false, result_is_nullable,
279
35
                                                         AggregateFunctionTemplate>(
280
35
                                    result.release(), argument_types_, attr.is_window_function));
281
35
                        } else {
282
12
                            result.reset(new NullableT<false, result_is_nullable,
283
12
                                                       AggregateFunctionTemplate>(
284
12
                                    result.release(), argument_types_, attr.is_window_function));
285
12
                        }
286
47
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
4
                    [&](auto result_is_nullable) {
277
4
                        if (attr.enable_aggregate_function_null_v2) {
278
4
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4
                                                         AggregateFunctionTemplate>(
280
4
                                    result.release(), argument_types_, attr.is_window_function));
281
4
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
2.29k
                    [&](auto result_is_nullable) {
277
2.29k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.27k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.27k
                                                         AggregateFunctionTemplate>(
280
2.27k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.27k
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
2.29k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.36k
                    [&](auto result_is_nullable) {
277
1.36k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.31k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.31k
                                                         AggregateFunctionTemplate>(
280
1.31k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.31k
                        } else {
282
49
                            result.reset(new NullableT<false, result_is_nullable,
283
49
                                                       AggregateFunctionTemplate>(
284
49
                                    result.release(), argument_types_, attr.is_window_function));
285
49
                        }
286
1.36k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
276
                    [&](auto result_is_nullable) {
277
276
                        if (attr.enable_aggregate_function_null_v2) {
278
218
                            result.reset(new NullableV2T<false, result_is_nullable,
279
218
                                                         AggregateFunctionTemplate>(
280
218
                                    result.release(), argument_types_, attr.is_window_function));
281
218
                        } else {
282
58
                            result.reset(new NullableT<false, result_is_nullable,
283
58
                                                       AggregateFunctionTemplate>(
284
58
                                    result.release(), argument_types_, attr.is_window_function));
285
58
                        }
286
276
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.59k
                    [&](auto result_is_nullable) {
277
1.59k
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
1.58k
                        } else {
282
1.58k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.58k
                                                       AggregateFunctionTemplate>(
284
1.58k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.58k
                        }
286
1.59k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
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
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
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
276
85
                    [&](auto result_is_nullable) {
277
85
                        if (attr.enable_aggregate_function_null_v2) {
278
46
                            result.reset(new NullableV2T<false, result_is_nullable,
279
46
                                                         AggregateFunctionTemplate>(
280
46
                                    result.release(), argument_types_, attr.is_window_function));
281
46
                        } else {
282
39
                            result.reset(new NullableT<false, result_is_nullable,
283
39
                                                       AggregateFunctionTemplate>(
284
39
                                    result.release(), argument_types_, attr.is_window_function));
285
39
                        }
286
85
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
208
                    [&](auto result_is_nullable) {
277
208
                        if (attr.enable_aggregate_function_null_v2) {
278
158
                            result.reset(new NullableV2T<false, result_is_nullable,
279
158
                                                         AggregateFunctionTemplate>(
280
158
                                    result.release(), argument_types_, attr.is_window_function));
281
158
                        } else {
282
50
                            result.reset(new NullableT<false, result_is_nullable,
283
50
                                                       AggregateFunctionTemplate>(
284
50
                                    result.release(), argument_types_, attr.is_window_function));
285
50
                        }
286
208
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
109
                    [&](auto result_is_nullable) {
277
109
                        if (attr.enable_aggregate_function_null_v2) {
278
73
                            result.reset(new NullableV2T<false, result_is_nullable,
279
73
                                                         AggregateFunctionTemplate>(
280
73
                                    result.release(), argument_types_, attr.is_window_function));
281
73
                        } else {
282
36
                            result.reset(new NullableT<false, result_is_nullable,
283
36
                                                       AggregateFunctionTemplate>(
284
36
                                    result.release(), argument_types_, attr.is_window_function));
285
36
                        }
286
109
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
6.64k
                    [&](auto result_is_nullable) {
277
6.64k
                        if (attr.enable_aggregate_function_null_v2) {
278
6.34k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6.34k
                                                         AggregateFunctionTemplate>(
280
6.34k
                                    result.release(), argument_types_, attr.is_window_function));
281
6.34k
                        } else {
282
299
                            result.reset(new NullableT<false, result_is_nullable,
283
299
                                                       AggregateFunctionTemplate>(
284
299
                                    result.release(), argument_types_, attr.is_window_function));
285
299
                        }
286
6.64k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2.26k
                    [&](auto result_is_nullable) {
277
2.26k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.22k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.22k
                                                         AggregateFunctionTemplate>(
280
2.22k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.22k
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
2.26k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
131
                    [&](auto result_is_nullable) {
277
131
                        if (attr.enable_aggregate_function_null_v2) {
278
93
                            result.reset(new NullableV2T<false, result_is_nullable,
279
93
                                                         AggregateFunctionTemplate>(
280
93
                                    result.release(), argument_types_, attr.is_window_function));
281
93
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
131
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
88
                    [&](auto result_is_nullable) {
277
88
                        if (attr.enable_aggregate_function_null_v2) {
278
52
                            result.reset(new NullableV2T<false, result_is_nullable,
279
52
                                                         AggregateFunctionTemplate>(
280
52
                                    result.release(), argument_types_, attr.is_window_function));
281
52
                        } else {
282
36
                            result.reset(new NullableT<false, result_is_nullable,
283
36
                                                       AggregateFunctionTemplate>(
284
36
                                    result.release(), argument_types_, attr.is_window_function));
285
36
                        }
286
88
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
185
                    [&](auto result_is_nullable) {
277
185
                        if (attr.enable_aggregate_function_null_v2) {
278
147
                            result.reset(new NullableV2T<false, result_is_nullable,
279
147
                                                         AggregateFunctionTemplate>(
280
147
                                    result.release(), argument_types_, attr.is_window_function));
281
147
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
185
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
76
                    [&](auto result_is_nullable) {
277
76
                        if (attr.enable_aggregate_function_null_v2) {
278
58
                            result.reset(new NullableV2T<false, result_is_nullable,
279
58
                                                         AggregateFunctionTemplate>(
280
58
                                    result.release(), argument_types_, attr.is_window_function));
281
58
                        } else {
282
18
                            result.reset(new NullableT<false, result_is_nullable,
283
18
                                                       AggregateFunctionTemplate>(
284
18
                                    result.release(), argument_types_, attr.is_window_function));
285
18
                        }
286
76
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
1.49k
                    [&](auto result_is_nullable) {
277
1.49k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.47k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.47k
                                                         AggregateFunctionTemplate>(
280
1.47k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.47k
                        } else {
282
19
                            result.reset(new NullableT<false, result_is_nullable,
283
19
                                                       AggregateFunctionTemplate>(
284
19
                                    result.release(), argument_types_, attr.is_window_function));
285
19
                        }
286
1.49k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
582
                    [&](auto result_is_nullable) {
277
582
                        if (attr.enable_aggregate_function_null_v2) {
278
542
                            result.reset(new NullableV2T<false, result_is_nullable,
279
542
                                                         AggregateFunctionTemplate>(
280
542
                                    result.release(), argument_types_, attr.is_window_function));
281
542
                        } else {
282
40
                            result.reset(new NullableT<false, result_is_nullable,
283
40
                                                       AggregateFunctionTemplate>(
284
40
                                    result.release(), argument_types_, attr.is_window_function));
285
40
                        }
286
582
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
35
                            result.reset(new NullableV2T<false, result_is_nullable,
279
35
                                                         AggregateFunctionTemplate>(
280
35
                                    result.release(), argument_types_, attr.is_window_function));
281
35
                        } else {
282
12
                            result.reset(new NullableT<false, result_is_nullable,
283
12
                                                       AggregateFunctionTemplate>(
284
12
                                    result.release(), argument_types_, attr.is_window_function));
285
12
                        }
286
47
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
4
                    [&](auto result_is_nullable) {
277
4
                        if (attr.enable_aggregate_function_null_v2) {
278
4
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4
                                                         AggregateFunctionTemplate>(
280
4
                                    result.release(), argument_types_, attr.is_window_function));
281
4
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
4
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
118
                    [&](auto result_is_nullable) {
277
118
                        if (attr.enable_aggregate_function_null_v2) {
278
118
                            result.reset(new NullableV2T<false, result_is_nullable,
279
118
                                                         AggregateFunctionTemplate>(
280
118
                                    result.release(), argument_types_, attr.is_window_function));
281
118
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
118
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
14
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
22
                            result.reset(new NullableV2T<false, result_is_nullable,
279
22
                                                         AggregateFunctionTemplate>(
280
22
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
22
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
14
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
10
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
6
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
545
                    [&](auto result_is_nullable) {
277
545
                        if (attr.enable_aggregate_function_null_v2) {
278
122
                            result.reset(new NullableV2T<false, result_is_nullable,
279
122
                                                         AggregateFunctionTemplate>(
280
122
                                    result.release(), argument_types_, attr.is_window_function));
281
423
                        } else {
282
423
                            result.reset(new NullableT<false, result_is_nullable,
283
423
                                                       AggregateFunctionTemplate>(
284
423
                                    result.release(), argument_types_, attr.is_window_function));
285
423
                        }
286
545
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
40
                    [&](auto result_is_nullable) {
277
40
                        if (attr.enable_aggregate_function_null_v2) {
278
40
                            result.reset(new NullableV2T<false, result_is_nullable,
279
40
                                                         AggregateFunctionTemplate>(
280
40
                                    result.release(), argument_types_, attr.is_window_function));
281
40
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
40
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
6
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
10
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
10
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
7
                    [&](auto result_is_nullable) {
277
7
                        if (attr.enable_aggregate_function_null_v2) {
278
7
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7
                                                         AggregateFunctionTemplate>(
280
7
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
7
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
22
                            result.reset(new NullableV2T<false, result_is_nullable,
279
22
                                                         AggregateFunctionTemplate>(
280
22
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
22
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
39
                    [&](auto result_is_nullable) {
277
39
                        if (attr.enable_aggregate_function_null_v2) {
278
35
                            result.reset(new NullableV2T<false, result_is_nullable,
279
35
                                                         AggregateFunctionTemplate>(
280
35
                                    result.release(), argument_types_, attr.is_window_function));
281
35
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
39
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
8
                    [&](auto result_is_nullable) {
277
8
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
6
                            result.reset(new NullableT<false, result_is_nullable,
283
6
                                                       AggregateFunctionTemplate>(
284
6
                                    result.release(), argument_types_, attr.is_window_function));
285
6
                        }
286
8
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
31
                    [&](auto result_is_nullable) {
277
31
                        if (attr.enable_aggregate_function_null_v2) {
278
30
                            result.reset(new NullableV2T<false, result_is_nullable,
279
30
                                                         AggregateFunctionTemplate>(
280
30
                                    result.release(), argument_types_, attr.is_window_function));
281
30
                        } else {
282
1
                            result.reset(new NullableT<false, result_is_nullable,
283
1
                                                       AggregateFunctionTemplate>(
284
1
                                    result.release(), argument_types_, attr.is_window_function));
285
1
                        }
286
31
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
9
                    [&](auto result_is_nullable) {
277
9
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
7
                            result.reset(new NullableT<false, result_is_nullable,
283
7
                                                       AggregateFunctionTemplate>(
284
7
                                    result.release(), argument_types_, attr.is_window_function));
285
7
                        }
286
9
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
93
                    [&](auto result_is_nullable) {
277
93
                        if (attr.enable_aggregate_function_null_v2) {
278
21
                            result.reset(new NullableV2T<false, result_is_nullable,
279
21
                                                         AggregateFunctionTemplate>(
280
21
                                    result.release(), argument_types_, attr.is_window_function));
281
72
                        } else {
282
72
                            result.reset(new NullableT<false, result_is_nullable,
283
72
                                                       AggregateFunctionTemplate>(
284
72
                                    result.release(), argument_types_, attr.is_window_function));
285
72
                        }
286
93
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
24
                    [&](auto result_is_nullable) {
277
24
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
18
                        } else {
282
18
                            result.reset(new NullableT<false, result_is_nullable,
283
18
                                                       AggregateFunctionTemplate>(
284
18
                                    result.release(), argument_types_, attr.is_window_function));
285
18
                        }
286
24
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
97
                    [&](auto result_is_nullable) {
277
97
                        if (attr.enable_aggregate_function_null_v2) {
278
24
                            result.reset(new NullableV2T<false, result_is_nullable,
279
24
                                                         AggregateFunctionTemplate>(
280
24
                                    result.release(), argument_types_, attr.is_window_function));
281
73
                        } else {
282
73
                            result.reset(new NullableT<false, result_is_nullable,
283
73
                                                       AggregateFunctionTemplate>(
284
73
                                    result.release(), argument_types_, attr.is_window_function));
285
73
                        }
286
97
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
47
                            result.reset(new NullableV2T<false, result_is_nullable,
279
47
                                                         AggregateFunctionTemplate>(
280
47
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
47
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
26
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
411
                    [&](auto result_is_nullable) {
277
411
                        if (attr.enable_aggregate_function_null_v2) {
278
109
                            result.reset(new NullableV2T<false, result_is_nullable,
279
109
                                                         AggregateFunctionTemplate>(
280
109
                                    result.release(), argument_types_, attr.is_window_function));
281
302
                        } else {
282
302
                            result.reset(new NullableT<false, result_is_nullable,
283
302
                                                       AggregateFunctionTemplate>(
284
302
                                    result.release(), argument_types_, attr.is_window_function));
285
302
                        }
286
411
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
388
                    [&](auto result_is_nullable) {
277
388
                        if (attr.enable_aggregate_function_null_v2) {
278
56
                            result.reset(new NullableV2T<false, result_is_nullable,
279
56
                                                         AggregateFunctionTemplate>(
280
56
                                    result.release(), argument_types_, attr.is_window_function));
281
332
                        } else {
282
332
                            result.reset(new NullableT<false, result_is_nullable,
283
332
                                                       AggregateFunctionTemplate>(
284
332
                                    result.release(), argument_types_, attr.is_window_function));
285
332
                        }
286
388
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
193
                    [&](auto result_is_nullable) {
277
193
                        if (attr.enable_aggregate_function_null_v2) {
278
124
                            result.reset(new NullableV2T<false, result_is_nullable,
279
124
                                                         AggregateFunctionTemplate>(
280
124
                                    result.release(), argument_types_, attr.is_window_function));
281
124
                        } else {
282
69
                            result.reset(new NullableT<false, result_is_nullable,
283
69
                                                       AggregateFunctionTemplate>(
284
69
                                    result.release(), argument_types_, attr.is_window_function));
285
69
                        }
286
193
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
28
                    [&](auto result_is_nullable) {
277
28
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
3
                            result.reset(new NullableT<false, result_is_nullable,
283
3
                                                       AggregateFunctionTemplate>(
284
3
                                    result.release(), argument_types_, attr.is_window_function));
285
3
                        }
286
28
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
455
                    [&](auto result_is_nullable) {
277
455
                        if (attr.enable_aggregate_function_null_v2) {
278
33
                            result.reset(new NullableV2T<false, result_is_nullable,
279
33
                                                         AggregateFunctionTemplate>(
280
33
                                    result.release(), argument_types_, attr.is_window_function));
281
422
                        } else {
282
422
                            result.reset(new NullableT<false, result_is_nullable,
283
422
                                                       AggregateFunctionTemplate>(
284
422
                                    result.release(), argument_types_, attr.is_window_function));
285
422
                        }
286
455
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
26
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
27
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
455
                    [&](auto result_is_nullable) {
277
455
                        if (attr.enable_aggregate_function_null_v2) {
278
33
                            result.reset(new NullableV2T<false, result_is_nullable,
279
33
                                                         AggregateFunctionTemplate>(
280
33
                                    result.release(), argument_types_, attr.is_window_function));
281
422
                        } else {
282
422
                            result.reset(new NullableT<false, result_is_nullable,
283
422
                                                       AggregateFunctionTemplate>(
284
422
                                    result.release(), argument_types_, attr.is_window_function));
285
422
                        }
286
455
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
26
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
27
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
25
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
455
                    [&](auto result_is_nullable) {
277
455
                        if (attr.enable_aggregate_function_null_v2) {
278
33
                            result.reset(new NullableV2T<false, result_is_nullable,
279
33
                                                         AggregateFunctionTemplate>(
280
33
                                    result.release(), argument_types_, attr.is_window_function));
281
422
                        } else {
282
422
                            result.reset(new NullableT<false, result_is_nullable,
283
422
                                                       AggregateFunctionTemplate>(
284
422
                                    result.release(), argument_types_, attr.is_window_function));
285
422
                        }
286
455
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
26
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
27
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
Line
Count
Source
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
5
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
276
12
                    [&](auto result_is_nullable) {
277
12
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
12
                        } else {
282
12
                            result.reset(new NullableT<false, result_is_nullable,
283
12
                                                       AggregateFunctionTemplate>(
284
12
                                    result.release(), argument_types_, attr.is_window_function));
285
12
                        }
286
12
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
Line
Count
Source
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
5
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
2
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
474
                    [&](auto result_is_nullable) {
277
474
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
474
                        } else {
282
474
                            result.reset(new NullableT<false, result_is_nullable,
283
474
                                                       AggregateFunctionTemplate>(
284
474
                                    result.release(), argument_types_, attr.is_window_function));
285
474
                        }
286
474
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
531
                    [&](auto result_is_nullable) {
277
531
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
531
                        } else {
282
531
                            result.reset(new NullableT<false, result_is_nullable,
283
531
                                                       AggregateFunctionTemplate>(
284
531
                                    result.release(), argument_types_, attr.is_window_function));
285
531
                        }
286
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
276
618
                    [&](auto result_is_nullable) {
277
618
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
618
                        } else {
282
618
                            result.reset(new NullableT<false, result_is_nullable,
283
618
                                                       AggregateFunctionTemplate>(
284
618
                                    result.release(), argument_types_, attr.is_window_function));
285
618
                        }
286
618
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
598
                    [&](auto result_is_nullable) {
277
598
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
598
                        } else {
282
598
                            result.reset(new NullableT<false, result_is_nullable,
283
598
                                                       AggregateFunctionTemplate>(
284
598
                                    result.release(), argument_types_, attr.is_window_function));
285
598
                        }
286
598
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
50
                    [&](auto result_is_nullable) {
277
50
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
50
                        } else {
282
50
                            result.reset(new NullableT<false, result_is_nullable,
283
50
                                                       AggregateFunctionTemplate>(
284
50
                                    result.release(), argument_types_, attr.is_window_function));
285
50
                        }
286
50
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
46
                    [&](auto result_is_nullable) {
277
46
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
46
                        } else {
282
46
                            result.reset(new NullableT<false, result_is_nullable,
283
46
                                                       AggregateFunctionTemplate>(
284
46
                                    result.release(), argument_types_, attr.is_window_function));
285
46
                        }
286
46
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
42
                    [&](auto result_is_nullable) {
277
42
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
42
                        } else {
282
42
                            result.reset(new NullableT<false, result_is_nullable,
283
42
                                                       AggregateFunctionTemplate>(
284
42
                                    result.release(), argument_types_, attr.is_window_function));
285
42
                        }
286
42
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
22
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
47
                            result.reset(new NullableT<false, result_is_nullable,
283
47
                                                       AggregateFunctionTemplate>(
284
47
                                    result.release(), argument_types_, attr.is_window_function));
285
47
                        }
286
47
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
24
                    [&](auto result_is_nullable) {
277
24
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
24
                        } else {
282
24
                            result.reset(new NullableT<false, result_is_nullable,
283
24
                                                       AggregateFunctionTemplate>(
284
24
                                    result.release(), argument_types_, attr.is_window_function));
285
24
                        }
286
24
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
16
                    [&](auto result_is_nullable) {
277
16
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
16
                        } else {
282
16
                            result.reset(new NullableT<false, result_is_nullable,
283
16
                                                       AggregateFunctionTemplate>(
284
16
                                    result.release(), argument_types_, attr.is_window_function));
285
16
                        }
286
16
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
16
                    [&](auto result_is_nullable) {
277
16
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
16
                        } else {
282
16
                            result.reset(new NullableT<false, result_is_nullable,
283
16
                                                       AggregateFunctionTemplate>(
284
16
                                    result.release(), argument_types_, attr.is_window_function));
285
16
                        }
286
16
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
40
                    [&](auto result_is_nullable) {
277
40
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
40
                        } else {
282
40
                            result.reset(new NullableT<false, result_is_nullable,
283
40
                                                       AggregateFunctionTemplate>(
284
40
                                    result.release(), argument_types_, attr.is_window_function));
285
40
                        }
286
40
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
125
                    [&](auto result_is_nullable) {
277
125
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
125
                        } else {
282
125
                            result.reset(new NullableT<false, result_is_nullable,
283
125
                                                       AggregateFunctionTemplate>(
284
125
                                    result.release(), argument_types_, attr.is_window_function));
285
125
                        }
286
125
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
276
1.03k
                    [&](auto result_is_nullable) {
277
1.03k
                        if (attr.enable_aggregate_function_null_v2) {
278
148
                            result.reset(new NullableV2T<false, result_is_nullable,
279
148
                                                         AggregateFunctionTemplate>(
280
148
                                    result.release(), argument_types_, attr.is_window_function));
281
886
                        } else {
282
886
                            result.reset(new NullableT<false, result_is_nullable,
283
886
                                                       AggregateFunctionTemplate>(
284
886
                                    result.release(), argument_types_, attr.is_window_function));
285
886
                        }
286
1.03k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
276
1.08k
                    [&](auto result_is_nullable) {
277
1.08k
                        if (attr.enable_aggregate_function_null_v2) {
278
202
                            result.reset(new NullableV2T<false, result_is_nullable,
279
202
                                                         AggregateFunctionTemplate>(
280
202
                                    result.release(), argument_types_, attr.is_window_function));
281
882
                        } else {
282
882
                            result.reset(new NullableT<false, result_is_nullable,
283
882
                                                       AggregateFunctionTemplate>(
284
882
                                    result.release(), argument_types_, attr.is_window_function));
285
882
                        }
286
1.08k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
276
1.04k
                    [&](auto result_is_nullable) {
277
1.04k
                        if (attr.enable_aggregate_function_null_v2) {
278
160
                            result.reset(new NullableV2T<false, result_is_nullable,
279
160
                                                         AggregateFunctionTemplate>(
280
160
                                    result.release(), argument_types_, attr.is_window_function));
281
886
                        } else {
282
886
                            result.reset(new NullableT<false, result_is_nullable,
283
886
                                                       AggregateFunctionTemplate>(
284
886
                                    result.release(), argument_types_, attr.is_window_function));
285
886
                        }
286
1.04k
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_
Line
Count
Source
276
564
                    [&](auto result_is_nullable) {
277
564
                        if (attr.enable_aggregate_function_null_v2) {
278
144
                            result.reset(new NullableV2T<false, result_is_nullable,
279
144
                                                         AggregateFunctionTemplate>(
280
144
                                    result.release(), argument_types_, attr.is_window_function));
281
420
                        } else {
282
420
                            result.reset(new NullableT<false, result_is_nullable,
283
420
                                                       AggregateFunctionTemplate>(
284
420
                                    result.release(), argument_types_, attr.is_window_function));
285
420
                        }
286
564
                    },
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
Line
Count
Source
276
82
                    [&](auto result_is_nullable) {
277
82
                        if (attr.enable_aggregate_function_null_v2) {
278
4
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4
                                                         AggregateFunctionTemplate>(
280
4
                                    result.release(), argument_types_, attr.is_window_function));
281
78
                        } else {
282
78
                            result.reset(new NullableT<false, result_is_nullable,
283
78
                                                       AggregateFunctionTemplate>(
284
78
                                    result.release(), argument_types_, attr.is_window_function));
285
78
                        }
286
82
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
5
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_
Line
Count
Source
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
6
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
5
                    },
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_
Line
Count
Source
276
21
                    [&](auto result_is_nullable) {
277
21
                        if (attr.enable_aggregate_function_null_v2) {
278
21
                            result.reset(new NullableV2T<false, result_is_nullable,
279
21
                                                         AggregateFunctionTemplate>(
280
21
                                    result.release(), argument_types_, attr.is_window_function));
281
21
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
21
                    },
287
59.9k
                    make_bool_variant(result_is_nullable));
288
59.9k
        }
289
109k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
109k
        return AggregateFunctionPtr(result.release());
291
109k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
894
                                                       TArgs&&... args) {
268
894
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
894
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
894
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
894
        if (have_nullable(argument_types_)) {
275
893
            std::visit(
276
893
                    [&](auto result_is_nullable) {
277
893
                        if (attr.enable_aggregate_function_null_v2) {
278
893
                            result.reset(new NullableV2T<false, result_is_nullable,
279
893
                                                         AggregateFunctionTemplate>(
280
893
                                    result.release(), argument_types_, attr.is_window_function));
281
893
                        } else {
282
893
                            result.reset(new NullableT<false, result_is_nullable,
283
893
                                                       AggregateFunctionTemplate>(
284
893
                                    result.release(), argument_types_, attr.is_window_function));
285
893
                        }
286
893
                    },
287
893
                    make_bool_variant(result_is_nullable));
288
893
        }
289
894
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
894
        return AggregateFunctionPtr(result.release());
291
894
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
82
                                                       TArgs&&... args) {
268
82
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
82
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
82
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
82
        if (have_nullable(argument_types_)) {
275
70
            std::visit(
276
70
                    [&](auto result_is_nullable) {
277
70
                        if (attr.enable_aggregate_function_null_v2) {
278
70
                            result.reset(new NullableV2T<false, result_is_nullable,
279
70
                                                         AggregateFunctionTemplate>(
280
70
                                    result.release(), argument_types_, attr.is_window_function));
281
70
                        } else {
282
70
                            result.reset(new NullableT<false, result_is_nullable,
283
70
                                                       AggregateFunctionTemplate>(
284
70
                                    result.release(), argument_types_, attr.is_window_function));
285
70
                        }
286
70
                    },
287
70
                    make_bool_variant(result_is_nullable));
288
70
        }
289
82
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
82
        return AggregateFunctionPtr(result.release());
291
82
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
30
                                                       TArgs&&... args) {
268
30
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
30
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
30
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
30
        if (have_nullable(argument_types_)) {
275
26
            std::visit(
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
287
26
                    make_bool_variant(result_is_nullable));
288
26
        }
289
30
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
30
        return AggregateFunctionPtr(result.release());
291
30
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.18k
                                                       TArgs&&... args) {
268
1.18k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.18k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.18k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.18k
        if (have_nullable(argument_types_)) {
275
658
            std::visit(
276
658
                    [&](auto result_is_nullable) {
277
658
                        if (attr.enable_aggregate_function_null_v2) {
278
658
                            result.reset(new NullableV2T<false, result_is_nullable,
279
658
                                                         AggregateFunctionTemplate>(
280
658
                                    result.release(), argument_types_, attr.is_window_function));
281
658
                        } else {
282
658
                            result.reset(new NullableT<false, result_is_nullable,
283
658
                                                       AggregateFunctionTemplate>(
284
658
                                    result.release(), argument_types_, attr.is_window_function));
285
658
                        }
286
658
                    },
287
658
                    make_bool_variant(result_is_nullable));
288
658
        }
289
1.18k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.18k
        return AggregateFunctionPtr(result.release());
291
1.18k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
18
                                                       TArgs&&... args) {
268
18
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
18
        if (have_nullable(argument_types_)) {
275
6
            std::visit(
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
6
                            result.reset(new NullableT<false, result_is_nullable,
283
6
                                                       AggregateFunctionTemplate>(
284
6
                                    result.release(), argument_types_, attr.is_window_function));
285
6
                        }
286
6
                    },
287
6
                    make_bool_variant(result_is_nullable));
288
6
        }
289
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
18
        return AggregateFunctionPtr(result.release());
291
18
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2.11k
                                                       TArgs&&... args) {
268
2.11k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2.11k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2.11k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2.11k
        if (have_nullable(argument_types_)) {
275
488
            std::visit(
276
488
                    [&](auto result_is_nullable) {
277
488
                        if (attr.enable_aggregate_function_null_v2) {
278
488
                            result.reset(new NullableV2T<false, result_is_nullable,
279
488
                                                         AggregateFunctionTemplate>(
280
488
                                    result.release(), argument_types_, attr.is_window_function));
281
488
                        } else {
282
488
                            result.reset(new NullableT<false, result_is_nullable,
283
488
                                                       AggregateFunctionTemplate>(
284
488
                                    result.release(), argument_types_, attr.is_window_function));
285
488
                        }
286
488
                    },
287
488
                    make_bool_variant(result_is_nullable));
288
488
        }
289
2.11k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2.11k
        return AggregateFunctionPtr(result.release());
291
2.11k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
9
                                                       TArgs&&... args) {
268
9
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
9
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
9
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
9
        if (have_nullable(argument_types_)) {
275
9
            std::visit(
276
9
                    [&](auto result_is_nullable) {
277
9
                        if (attr.enable_aggregate_function_null_v2) {
278
9
                            result.reset(new NullableV2T<false, result_is_nullable,
279
9
                                                         AggregateFunctionTemplate>(
280
9
                                    result.release(), argument_types_, attr.is_window_function));
281
9
                        } else {
282
9
                            result.reset(new NullableT<false, result_is_nullable,
283
9
                                                       AggregateFunctionTemplate>(
284
9
                                    result.release(), argument_types_, attr.is_window_function));
285
9
                        }
286
9
                    },
287
9
                    make_bool_variant(result_is_nullable));
288
9
        }
289
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
9
        return AggregateFunctionPtr(result.release());
291
9
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
156
                                                       TArgs&&... args) {
268
156
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
156
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
156
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
156
        if (have_nullable(argument_types_)) {
275
141
            std::visit(
276
141
                    [&](auto result_is_nullable) {
277
141
                        if (attr.enable_aggregate_function_null_v2) {
278
141
                            result.reset(new NullableV2T<false, result_is_nullable,
279
141
                                                         AggregateFunctionTemplate>(
280
141
                                    result.release(), argument_types_, attr.is_window_function));
281
141
                        } else {
282
141
                            result.reset(new NullableT<false, result_is_nullable,
283
141
                                                       AggregateFunctionTemplate>(
284
141
                                    result.release(), argument_types_, attr.is_window_function));
285
141
                        }
286
141
                    },
287
141
                    make_bool_variant(result_is_nullable));
288
141
        }
289
156
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
156
        return AggregateFunctionPtr(result.release());
291
156
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.52k
                                                       TArgs&&... args) {
268
1.52k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.52k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.52k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.52k
        if (have_nullable(argument_types_)) {
275
153
            std::visit(
276
153
                    [&](auto result_is_nullable) {
277
153
                        if (attr.enable_aggregate_function_null_v2) {
278
153
                            result.reset(new NullableV2T<false, result_is_nullable,
279
153
                                                         AggregateFunctionTemplate>(
280
153
                                    result.release(), argument_types_, attr.is_window_function));
281
153
                        } else {
282
153
                            result.reset(new NullableT<false, result_is_nullable,
283
153
                                                       AggregateFunctionTemplate>(
284
153
                                    result.release(), argument_types_, attr.is_window_function));
285
153
                        }
286
153
                    },
287
153
                    make_bool_variant(result_is_nullable));
288
153
        }
289
1.52k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.52k
        return AggregateFunctionPtr(result.release());
291
1.52k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
86
                                                       TArgs&&... args) {
268
86
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
86
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
86
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
86
        if (have_nullable(argument_types_)) {
275
70
            std::visit(
276
70
                    [&](auto result_is_nullable) {
277
70
                        if (attr.enable_aggregate_function_null_v2) {
278
70
                            result.reset(new NullableV2T<false, result_is_nullable,
279
70
                                                         AggregateFunctionTemplate>(
280
70
                                    result.release(), argument_types_, attr.is_window_function));
281
70
                        } else {
282
70
                            result.reset(new NullableT<false, result_is_nullable,
283
70
                                                       AggregateFunctionTemplate>(
284
70
                                    result.release(), argument_types_, attr.is_window_function));
285
70
                        }
286
70
                    },
287
70
                    make_bool_variant(result_is_nullable));
288
70
        }
289
86
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
86
        return AggregateFunctionPtr(result.release());
291
86
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
7.62k
                                                       TArgs&&... args) {
268
7.62k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
7.62k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
7.62k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
7.62k
        if (have_nullable(argument_types_)) {
275
4.30k
            std::visit(
276
4.30k
                    [&](auto result_is_nullable) {
277
4.30k
                        if (attr.enable_aggregate_function_null_v2) {
278
4.30k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4.30k
                                                         AggregateFunctionTemplate>(
280
4.30k
                                    result.release(), argument_types_, attr.is_window_function));
281
4.30k
                        } else {
282
4.30k
                            result.reset(new NullableT<false, result_is_nullable,
283
4.30k
                                                       AggregateFunctionTemplate>(
284
4.30k
                                    result.release(), argument_types_, attr.is_window_function));
285
4.30k
                        }
286
4.30k
                    },
287
4.30k
                    make_bool_variant(result_is_nullable));
288
4.30k
        }
289
7.62k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
7.62k
        return AggregateFunctionPtr(result.release());
291
7.62k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
5.26k
                                                       TArgs&&... args) {
268
5.26k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
5.26k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
5.26k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
5.26k
        if (have_nullable(argument_types_)) {
275
2.46k
            std::visit(
276
2.46k
                    [&](auto result_is_nullable) {
277
2.46k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.46k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.46k
                                                         AggregateFunctionTemplate>(
280
2.46k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.46k
                        } else {
282
2.46k
                            result.reset(new NullableT<false, result_is_nullable,
283
2.46k
                                                       AggregateFunctionTemplate>(
284
2.46k
                                    result.release(), argument_types_, attr.is_window_function));
285
2.46k
                        }
286
2.46k
                    },
287
2.46k
                    make_bool_variant(result_is_nullable));
288
2.46k
        }
289
5.26k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
5.26k
        return AggregateFunctionPtr(result.release());
291
5.26k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.20k
                                                       TArgs&&... args) {
268
1.20k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.20k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.20k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.20k
        if (have_nullable(argument_types_)) {
275
712
            std::visit(
276
712
                    [&](auto result_is_nullable) {
277
712
                        if (attr.enable_aggregate_function_null_v2) {
278
712
                            result.reset(new NullableV2T<false, result_is_nullable,
279
712
                                                         AggregateFunctionTemplate>(
280
712
                                    result.release(), argument_types_, attr.is_window_function));
281
712
                        } else {
282
712
                            result.reset(new NullableT<false, result_is_nullable,
283
712
                                                       AggregateFunctionTemplate>(
284
712
                                    result.release(), argument_types_, attr.is_window_function));
285
712
                        }
286
712
                    },
287
712
                    make_bool_variant(result_is_nullable));
288
712
        }
289
1.20k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.20k
        return AggregateFunctionPtr(result.release());
291
1.20k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
70
                                                       TArgs&&... args) {
268
70
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
70
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
70
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
70
        if (have_nullable(argument_types_)) {
275
70
            std::visit(
276
70
                    [&](auto result_is_nullable) {
277
70
                        if (attr.enable_aggregate_function_null_v2) {
278
70
                            result.reset(new NullableV2T<false, result_is_nullable,
279
70
                                                         AggregateFunctionTemplate>(
280
70
                                    result.release(), argument_types_, attr.is_window_function));
281
70
                        } else {
282
70
                            result.reset(new NullableT<false, result_is_nullable,
283
70
                                                       AggregateFunctionTemplate>(
284
70
                                    result.release(), argument_types_, attr.is_window_function));
285
70
                        }
286
70
                    },
287
70
                    make_bool_variant(result_is_nullable));
288
70
        }
289
70
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
70
        return AggregateFunctionPtr(result.release());
291
70
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2.27k
                                                       TArgs&&... args) {
268
2.27k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2.27k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2.27k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2.27k
        if (have_nullable(argument_types_)) {
275
1.43k
            std::visit(
276
1.43k
                    [&](auto result_is_nullable) {
277
1.43k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.43k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.43k
                                                         AggregateFunctionTemplate>(
280
1.43k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.43k
                        } else {
282
1.43k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.43k
                                                       AggregateFunctionTemplate>(
284
1.43k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.43k
                        }
286
1.43k
                    },
287
1.43k
                    make_bool_variant(result_is_nullable));
288
1.43k
        }
289
2.27k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2.27k
        return AggregateFunctionPtr(result.release());
291
2.27k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1
                                                       TArgs&&... args) {
268
1
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1
        return AggregateFunctionPtr(result.release());
291
1
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.75k
                                                       TArgs&&... args) {
268
4.75k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.75k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.75k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.75k
        if (have_nullable(argument_types_)) {
275
2.45k
            std::visit(
276
2.45k
                    [&](auto result_is_nullable) {
277
2.45k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.45k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.45k
                                                         AggregateFunctionTemplate>(
280
2.45k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.45k
                        } else {
282
2.45k
                            result.reset(new NullableT<false, result_is_nullable,
283
2.45k
                                                       AggregateFunctionTemplate>(
284
2.45k
                                    result.release(), argument_types_, attr.is_window_function));
285
2.45k
                        }
286
2.45k
                    },
287
2.45k
                    make_bool_variant(result_is_nullable));
288
2.45k
        }
289
4.75k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.75k
        return AggregateFunctionPtr(result.release());
291
4.75k
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1
                                                       TArgs&&... args) {
268
1
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1
        return AggregateFunctionPtr(result.release());
291
1
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.79k
                                                       TArgs&&... args) {
268
4.79k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.79k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.79k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.79k
        if (have_nullable(argument_types_)) {
275
1.51k
            std::visit(
276
1.51k
                    [&](auto result_is_nullable) {
277
1.51k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.51k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.51k
                                                         AggregateFunctionTemplate>(
280
1.51k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.51k
                        } else {
282
1.51k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.51k
                                                       AggregateFunctionTemplate>(
284
1.51k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.51k
                        }
286
1.51k
                    },
287
1.51k
                    make_bool_variant(result_is_nullable));
288
1.51k
        }
289
4.79k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.79k
        return AggregateFunctionPtr(result.release());
291
4.79k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
782
                                                       TArgs&&... args) {
268
782
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
782
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
782
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
782
        if (have_nullable(argument_types_)) {
275
417
            std::visit(
276
417
                    [&](auto result_is_nullable) {
277
417
                        if (attr.enable_aggregate_function_null_v2) {
278
417
                            result.reset(new NullableV2T<false, result_is_nullable,
279
417
                                                         AggregateFunctionTemplate>(
280
417
                                    result.release(), argument_types_, attr.is_window_function));
281
417
                        } else {
282
417
                            result.reset(new NullableT<false, result_is_nullable,
283
417
                                                       AggregateFunctionTemplate>(
284
417
                                    result.release(), argument_types_, attr.is_window_function));
285
417
                        }
286
417
                    },
287
417
                    make_bool_variant(result_is_nullable));
288
417
        }
289
782
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
782
        return AggregateFunctionPtr(result.release());
291
782
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.59k
                                                       TArgs&&... args) {
268
1.59k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.59k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.59k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.59k
        if (have_nullable(argument_types_)) {
275
1.59k
            std::visit(
276
1.59k
                    [&](auto result_is_nullable) {
277
1.59k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.59k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.59k
                                                         AggregateFunctionTemplate>(
280
1.59k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.59k
                        } else {
282
1.59k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.59k
                                                       AggregateFunctionTemplate>(
284
1.59k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.59k
                        }
286
1.59k
                    },
287
1.59k
                    make_bool_variant(result_is_nullable));
288
1.59k
        }
289
1.59k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.59k
        return AggregateFunctionPtr(result.release());
291
1.59k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
131
                                                       TArgs&&... args) {
268
131
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
131
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
131
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
131
        if (have_nullable(argument_types_)) {
275
107
            std::visit(
276
107
                    [&](auto result_is_nullable) {
277
107
                        if (attr.enable_aggregate_function_null_v2) {
278
107
                            result.reset(new NullableV2T<false, result_is_nullable,
279
107
                                                         AggregateFunctionTemplate>(
280
107
                                    result.release(), argument_types_, attr.is_window_function));
281
107
                        } else {
282
107
                            result.reset(new NullableT<false, result_is_nullable,
283
107
                                                       AggregateFunctionTemplate>(
284
107
                                    result.release(), argument_types_, attr.is_window_function));
285
107
                        }
286
107
                    },
287
107
                    make_bool_variant(result_is_nullable));
288
107
        }
289
131
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
131
        return AggregateFunctionPtr(result.release());
291
131
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
776
                                                       TArgs&&... args) {
268
776
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
776
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
776
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
776
        if (have_nullable(argument_types_)) {
275
470
            std::visit(
276
470
                    [&](auto result_is_nullable) {
277
470
                        if (attr.enable_aggregate_function_null_v2) {
278
470
                            result.reset(new NullableV2T<false, result_is_nullable,
279
470
                                                         AggregateFunctionTemplate>(
280
470
                                    result.release(), argument_types_, attr.is_window_function));
281
470
                        } else {
282
470
                            result.reset(new NullableT<false, result_is_nullable,
283
470
                                                       AggregateFunctionTemplate>(
284
470
                                    result.release(), argument_types_, attr.is_window_function));
285
470
                        }
286
470
                    },
287
470
                    make_bool_variant(result_is_nullable));
288
470
        }
289
776
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
776
        return AggregateFunctionPtr(result.release());
291
776
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
587
                                                       TArgs&&... args) {
268
587
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
587
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
587
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
587
        if (have_nullable(argument_types_)) {
275
318
            std::visit(
276
318
                    [&](auto result_is_nullable) {
277
318
                        if (attr.enable_aggregate_function_null_v2) {
278
318
                            result.reset(new NullableV2T<false, result_is_nullable,
279
318
                                                         AggregateFunctionTemplate>(
280
318
                                    result.release(), argument_types_, attr.is_window_function));
281
318
                        } else {
282
318
                            result.reset(new NullableT<false, result_is_nullable,
283
318
                                                       AggregateFunctionTemplate>(
284
318
                                    result.release(), argument_types_, attr.is_window_function));
285
318
                        }
286
318
                    },
287
318
                    make_bool_variant(result_is_nullable));
288
318
        }
289
587
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
587
        return AggregateFunctionPtr(result.release());
291
587
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
12.4k
                                                       TArgs&&... args) {
268
12.4k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
12.4k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
12.4k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
12.4k
        if (have_nullable(argument_types_)) {
275
7.51k
            std::visit(
276
7.51k
                    [&](auto result_is_nullable) {
277
7.51k
                        if (attr.enable_aggregate_function_null_v2) {
278
7.51k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7.51k
                                                         AggregateFunctionTemplate>(
280
7.51k
                                    result.release(), argument_types_, attr.is_window_function));
281
7.51k
                        } else {
282
7.51k
                            result.reset(new NullableT<false, result_is_nullable,
283
7.51k
                                                       AggregateFunctionTemplate>(
284
7.51k
                                    result.release(), argument_types_, attr.is_window_function));
285
7.51k
                        }
286
7.51k
                    },
287
7.51k
                    make_bool_variant(result_is_nullable));
288
7.51k
        }
289
12.4k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
12.4k
        return AggregateFunctionPtr(result.release());
291
12.4k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.44k
                                                       TArgs&&... args) {
268
4.44k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.44k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.44k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.44k
        if (have_nullable(argument_types_)) {
275
2.48k
            std::visit(
276
2.48k
                    [&](auto result_is_nullable) {
277
2.48k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.48k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.48k
                                                         AggregateFunctionTemplate>(
280
2.48k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.48k
                        } else {
282
2.48k
                            result.reset(new NullableT<false, result_is_nullable,
283
2.48k
                                                       AggregateFunctionTemplate>(
284
2.48k
                                    result.release(), argument_types_, attr.is_window_function));
285
2.48k
                        }
286
2.48k
                    },
287
2.48k
                    make_bool_variant(result_is_nullable));
288
2.48k
        }
289
4.44k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.44k
        return AggregateFunctionPtr(result.release());
291
4.44k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
680
                                                       TArgs&&... args) {
268
680
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
680
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
680
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
680
        if (have_nullable(argument_types_)) {
275
389
            std::visit(
276
389
                    [&](auto result_is_nullable) {
277
389
                        if (attr.enable_aggregate_function_null_v2) {
278
389
                            result.reset(new NullableV2T<false, result_is_nullable,
279
389
                                                         AggregateFunctionTemplate>(
280
389
                                    result.release(), argument_types_, attr.is_window_function));
281
389
                        } else {
282
389
                            result.reset(new NullableT<false, result_is_nullable,
283
389
                                                       AggregateFunctionTemplate>(
284
389
                                    result.release(), argument_types_, attr.is_window_function));
285
389
                        }
286
389
                    },
287
389
                    make_bool_variant(result_is_nullable));
288
389
        }
289
680
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
680
        return AggregateFunctionPtr(result.release());
291
680
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
450
                                                       TArgs&&... args) {
268
450
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
450
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
450
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
450
        if (have_nullable(argument_types_)) {
275
284
            std::visit(
276
284
                    [&](auto result_is_nullable) {
277
284
                        if (attr.enable_aggregate_function_null_v2) {
278
284
                            result.reset(new NullableV2T<false, result_is_nullable,
279
284
                                                         AggregateFunctionTemplate>(
280
284
                                    result.release(), argument_types_, attr.is_window_function));
281
284
                        } else {
282
284
                            result.reset(new NullableT<false, result_is_nullable,
283
284
                                                       AggregateFunctionTemplate>(
284
284
                                    result.release(), argument_types_, attr.is_window_function));
285
284
                        }
286
284
                    },
287
284
                    make_bool_variant(result_is_nullable));
288
284
        }
289
450
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
450
        return AggregateFunctionPtr(result.release());
291
450
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
935
                                                       TArgs&&... args) {
268
935
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
935
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
935
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
935
        if (have_nullable(argument_types_)) {
275
544
            std::visit(
276
544
                    [&](auto result_is_nullable) {
277
544
                        if (attr.enable_aggregate_function_null_v2) {
278
544
                            result.reset(new NullableV2T<false, result_is_nullable,
279
544
                                                         AggregateFunctionTemplate>(
280
544
                                    result.release(), argument_types_, attr.is_window_function));
281
544
                        } else {
282
544
                            result.reset(new NullableT<false, result_is_nullable,
283
544
                                                       AggregateFunctionTemplate>(
284
544
                                    result.release(), argument_types_, attr.is_window_function));
285
544
                        }
286
544
                    },
287
544
                    make_bool_variant(result_is_nullable));
288
544
        }
289
935
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
935
        return AggregateFunctionPtr(result.release());
291
935
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
155
                                                       TArgs&&... args) {
268
155
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
155
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
155
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
155
        if (have_nullable(argument_types_)) {
275
131
            std::visit(
276
131
                    [&](auto result_is_nullable) {
277
131
                        if (attr.enable_aggregate_function_null_v2) {
278
131
                            result.reset(new NullableV2T<false, result_is_nullable,
279
131
                                                         AggregateFunctionTemplate>(
280
131
                                    result.release(), argument_types_, attr.is_window_function));
281
131
                        } else {
282
131
                            result.reset(new NullableT<false, result_is_nullable,
283
131
                                                       AggregateFunctionTemplate>(
284
131
                                    result.release(), argument_types_, attr.is_window_function));
285
131
                        }
286
131
                    },
287
131
                    make_bool_variant(result_is_nullable));
288
131
        }
289
155
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
155
        return AggregateFunctionPtr(result.release());
291
155
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2.63k
                                                       TArgs&&... args) {
268
2.63k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2.63k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2.63k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2.63k
        if (have_nullable(argument_types_)) {
275
1.53k
            std::visit(
276
1.53k
                    [&](auto result_is_nullable) {
277
1.53k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.53k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.53k
                                                         AggregateFunctionTemplate>(
280
1.53k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.53k
                        } else {
282
1.53k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.53k
                                                       AggregateFunctionTemplate>(
284
1.53k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.53k
                        }
286
1.53k
                    },
287
1.53k
                    make_bool_variant(result_is_nullable));
288
1.53k
        }
289
2.63k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2.63k
        return AggregateFunctionPtr(result.release());
291
2.63k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1
                                                       TArgs&&... args) {
268
1
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1
        return AggregateFunctionPtr(result.release());
291
1
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
813
                                                       TArgs&&... args) {
268
813
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
813
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
813
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
813
        if (have_nullable(argument_types_)) {
275
629
            std::visit(
276
629
                    [&](auto result_is_nullable) {
277
629
                        if (attr.enable_aggregate_function_null_v2) {
278
629
                            result.reset(new NullableV2T<false, result_is_nullable,
279
629
                                                         AggregateFunctionTemplate>(
280
629
                                    result.release(), argument_types_, attr.is_window_function));
281
629
                        } else {
282
629
                            result.reset(new NullableT<false, result_is_nullable,
283
629
                                                       AggregateFunctionTemplate>(
284
629
                                    result.release(), argument_types_, attr.is_window_function));
285
629
                        }
286
629
                    },
287
629
                    make_bool_variant(result_is_nullable));
288
629
        }
289
813
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
813
        return AggregateFunctionPtr(result.release());
291
813
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
47
                                                       TArgs&&... args) {
268
47
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
47
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
47
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
47
        if (have_nullable(argument_types_)) {
275
47
            std::visit(
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
47
                            result.reset(new NullableV2T<false, result_is_nullable,
279
47
                                                         AggregateFunctionTemplate>(
280
47
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
47
                            result.reset(new NullableT<false, result_is_nullable,
283
47
                                                       AggregateFunctionTemplate>(
284
47
                                    result.release(), argument_types_, attr.is_window_function));
285
47
                        }
286
47
                    },
287
47
                    make_bool_variant(result_is_nullable));
288
47
        }
289
47
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
47
        return AggregateFunctionPtr(result.release());
291
47
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4
                                                       TArgs&&... args) {
268
4
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4
        if (have_nullable(argument_types_)) {
275
4
            std::visit(
276
4
                    [&](auto result_is_nullable) {
277
4
                        if (attr.enable_aggregate_function_null_v2) {
278
4
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4
                                                         AggregateFunctionTemplate>(
280
4
                                    result.release(), argument_types_, attr.is_window_function));
281
4
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
4
                    },
287
4
                    make_bool_variant(result_is_nullable));
288
4
        }
289
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4
        return AggregateFunctionPtr(result.release());
291
4
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.50k
                                                       TArgs&&... args) {
268
4.50k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.50k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.50k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.50k
        if (have_nullable(argument_types_)) {
275
2.29k
            std::visit(
276
2.29k
                    [&](auto result_is_nullable) {
277
2.29k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.29k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.29k
                                                         AggregateFunctionTemplate>(
280
2.29k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.29k
                        } else {
282
2.29k
                            result.reset(new NullableT<false, result_is_nullable,
283
2.29k
                                                       AggregateFunctionTemplate>(
284
2.29k
                                    result.release(), argument_types_, attr.is_window_function));
285
2.29k
                        }
286
2.29k
                    },
287
2.29k
                    make_bool_variant(result_is_nullable));
288
2.29k
        }
289
4.50k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.50k
        return AggregateFunctionPtr(result.release());
291
4.50k
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1
                                                       TArgs&&... args) {
268
1
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1
        return AggregateFunctionPtr(result.release());
291
1
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.62k
                                                       TArgs&&... args) {
268
4.62k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.62k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.62k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.62k
        if (have_nullable(argument_types_)) {
275
1.36k
            std::visit(
276
1.36k
                    [&](auto result_is_nullable) {
277
1.36k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.36k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.36k
                                                         AggregateFunctionTemplate>(
280
1.36k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.36k
                        } else {
282
1.36k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.36k
                                                       AggregateFunctionTemplate>(
284
1.36k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.36k
                        }
286
1.36k
                    },
287
1.36k
                    make_bool_variant(result_is_nullable));
288
1.36k
        }
289
4.62k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.62k
        return AggregateFunctionPtr(result.release());
291
4.62k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
552
                                                       TArgs&&... args) {
268
552
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
552
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
552
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
552
        if (have_nullable(argument_types_)) {
275
276
            std::visit(
276
276
                    [&](auto result_is_nullable) {
277
276
                        if (attr.enable_aggregate_function_null_v2) {
278
276
                            result.reset(new NullableV2T<false, result_is_nullable,
279
276
                                                         AggregateFunctionTemplate>(
280
276
                                    result.release(), argument_types_, attr.is_window_function));
281
276
                        } else {
282
276
                            result.reset(new NullableT<false, result_is_nullable,
283
276
                                                       AggregateFunctionTemplate>(
284
276
                                    result.release(), argument_types_, attr.is_window_function));
285
276
                        }
286
276
                    },
287
276
                    make_bool_variant(result_is_nullable));
288
276
        }
289
552
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
552
        return AggregateFunctionPtr(result.release());
291
552
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.59k
                                                       TArgs&&... args) {
268
1.59k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.59k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.59k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.59k
        if (have_nullable(argument_types_)) {
275
1.59k
            std::visit(
276
1.59k
                    [&](auto result_is_nullable) {
277
1.59k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.59k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.59k
                                                         AggregateFunctionTemplate>(
280
1.59k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.59k
                        } else {
282
1.59k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.59k
                                                       AggregateFunctionTemplate>(
284
1.59k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.59k
                        }
286
1.59k
                    },
287
1.59k
                    make_bool_variant(result_is_nullable));
288
1.59k
        }
289
1.59k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.59k
        return AggregateFunctionPtr(result.release());
291
1.59k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
101
                                                       TArgs&&... args) {
268
101
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
101
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
101
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
101
        if (have_nullable(argument_types_)) {
275
85
            std::visit(
276
85
                    [&](auto result_is_nullable) {
277
85
                        if (attr.enable_aggregate_function_null_v2) {
278
85
                            result.reset(new NullableV2T<false, result_is_nullable,
279
85
                                                         AggregateFunctionTemplate>(
280
85
                                    result.release(), argument_types_, attr.is_window_function));
281
85
                        } else {
282
85
                            result.reset(new NullableT<false, result_is_nullable,
283
85
                                                       AggregateFunctionTemplate>(
284
85
                                    result.release(), argument_types_, attr.is_window_function));
285
85
                        }
286
85
                    },
287
85
                    make_bool_variant(result_is_nullable));
288
85
        }
289
101
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
101
        return AggregateFunctionPtr(result.release());
291
101
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
342
                                                       TArgs&&... args) {
268
342
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
342
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
342
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
342
        if (have_nullable(argument_types_)) {
275
208
            std::visit(
276
208
                    [&](auto result_is_nullable) {
277
208
                        if (attr.enable_aggregate_function_null_v2) {
278
208
                            result.reset(new NullableV2T<false, result_is_nullable,
279
208
                                                         AggregateFunctionTemplate>(
280
208
                                    result.release(), argument_types_, attr.is_window_function));
281
208
                        } else {
282
208
                            result.reset(new NullableT<false, result_is_nullable,
283
208
                                                       AggregateFunctionTemplate>(
284
208
                                    result.release(), argument_types_, attr.is_window_function));
285
208
                        }
286
208
                    },
287
208
                    make_bool_variant(result_is_nullable));
288
208
        }
289
342
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
342
        return AggregateFunctionPtr(result.release());
291
342
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
228
                                                       TArgs&&... args) {
268
228
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
228
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
228
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
228
        if (have_nullable(argument_types_)) {
275
109
            std::visit(
276
109
                    [&](auto result_is_nullable) {
277
109
                        if (attr.enable_aggregate_function_null_v2) {
278
109
                            result.reset(new NullableV2T<false, result_is_nullable,
279
109
                                                         AggregateFunctionTemplate>(
280
109
                                    result.release(), argument_types_, attr.is_window_function));
281
109
                        } else {
282
109
                            result.reset(new NullableT<false, result_is_nullable,
283
109
                                                       AggregateFunctionTemplate>(
284
109
                                    result.release(), argument_types_, attr.is_window_function));
285
109
                        }
286
109
                    },
287
109
                    make_bool_variant(result_is_nullable));
288
109
        }
289
228
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
228
        return AggregateFunctionPtr(result.release());
291
228
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
10.6k
                                                       TArgs&&... args) {
268
10.6k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
10.6k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
10.6k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
10.6k
        if (have_nullable(argument_types_)) {
275
6.64k
            std::visit(
276
6.64k
                    [&](auto result_is_nullable) {
277
6.64k
                        if (attr.enable_aggregate_function_null_v2) {
278
6.64k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6.64k
                                                         AggregateFunctionTemplate>(
280
6.64k
                                    result.release(), argument_types_, attr.is_window_function));
281
6.64k
                        } else {
282
6.64k
                            result.reset(new NullableT<false, result_is_nullable,
283
6.64k
                                                       AggregateFunctionTemplate>(
284
6.64k
                                    result.release(), argument_types_, attr.is_window_function));
285
6.64k
                        }
286
6.64k
                    },
287
6.64k
                    make_bool_variant(result_is_nullable));
288
6.64k
        }
289
10.6k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
10.6k
        return AggregateFunctionPtr(result.release());
291
10.6k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4.01k
                                                       TArgs&&... args) {
268
4.01k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4.01k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4.01k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4.01k
        if (have_nullable(argument_types_)) {
275
2.26k
            std::visit(
276
2.26k
                    [&](auto result_is_nullable) {
277
2.26k
                        if (attr.enable_aggregate_function_null_v2) {
278
2.26k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2.26k
                                                         AggregateFunctionTemplate>(
280
2.26k
                                    result.release(), argument_types_, attr.is_window_function));
281
2.26k
                        } else {
282
2.26k
                            result.reset(new NullableT<false, result_is_nullable,
283
2.26k
                                                       AggregateFunctionTemplate>(
284
2.26k
                                    result.release(), argument_types_, attr.is_window_function));
285
2.26k
                        }
286
2.26k
                    },
287
2.26k
                    make_bool_variant(result_is_nullable));
288
2.26k
        }
289
4.01k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4.01k
        return AggregateFunctionPtr(result.release());
291
4.01k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
268
                                                       TArgs&&... args) {
268
268
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
268
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
268
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
268
        if (have_nullable(argument_types_)) {
275
131
            std::visit(
276
131
                    [&](auto result_is_nullable) {
277
131
                        if (attr.enable_aggregate_function_null_v2) {
278
131
                            result.reset(new NullableV2T<false, result_is_nullable,
279
131
                                                         AggregateFunctionTemplate>(
280
131
                                    result.release(), argument_types_, attr.is_window_function));
281
131
                        } else {
282
131
                            result.reset(new NullableT<false, result_is_nullable,
283
131
                                                       AggregateFunctionTemplate>(
284
131
                                    result.release(), argument_types_, attr.is_window_function));
285
131
                        }
286
131
                    },
287
131
                    make_bool_variant(result_is_nullable));
288
131
        }
289
268
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
268
        return AggregateFunctionPtr(result.release());
291
268
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
104
                                                       TArgs&&... args) {
268
104
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
104
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
104
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
104
        if (have_nullable(argument_types_)) {
275
88
            std::visit(
276
88
                    [&](auto result_is_nullable) {
277
88
                        if (attr.enable_aggregate_function_null_v2) {
278
88
                            result.reset(new NullableV2T<false, result_is_nullable,
279
88
                                                         AggregateFunctionTemplate>(
280
88
                                    result.release(), argument_types_, attr.is_window_function));
281
88
                        } else {
282
88
                            result.reset(new NullableT<false, result_is_nullable,
283
88
                                                       AggregateFunctionTemplate>(
284
88
                                    result.release(), argument_types_, attr.is_window_function));
285
88
                        }
286
88
                    },
287
88
                    make_bool_variant(result_is_nullable));
288
88
        }
289
104
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
104
        return AggregateFunctionPtr(result.release());
291
104
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
213
                                                       TArgs&&... args) {
268
213
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
213
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
213
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
213
        if (have_nullable(argument_types_)) {
275
185
            std::visit(
276
185
                    [&](auto result_is_nullable) {
277
185
                        if (attr.enable_aggregate_function_null_v2) {
278
185
                            result.reset(new NullableV2T<false, result_is_nullable,
279
185
                                                         AggregateFunctionTemplate>(
280
185
                                    result.release(), argument_types_, attr.is_window_function));
281
185
                        } else {
282
185
                            result.reset(new NullableT<false, result_is_nullable,
283
185
                                                       AggregateFunctionTemplate>(
284
185
                                    result.release(), argument_types_, attr.is_window_function));
285
185
                        }
286
185
                    },
287
185
                    make_bool_variant(result_is_nullable));
288
185
        }
289
213
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
213
        return AggregateFunctionPtr(result.release());
291
213
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
94
                                                       TArgs&&... args) {
268
94
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
94
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
94
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
94
        if (have_nullable(argument_types_)) {
275
76
            std::visit(
276
76
                    [&](auto result_is_nullable) {
277
76
                        if (attr.enable_aggregate_function_null_v2) {
278
76
                            result.reset(new NullableV2T<false, result_is_nullable,
279
76
                                                         AggregateFunctionTemplate>(
280
76
                                    result.release(), argument_types_, attr.is_window_function));
281
76
                        } else {
282
76
                            result.reset(new NullableT<false, result_is_nullable,
283
76
                                                       AggregateFunctionTemplate>(
284
76
                                    result.release(), argument_types_, attr.is_window_function));
285
76
                        }
286
76
                    },
287
76
                    make_bool_variant(result_is_nullable));
288
76
        }
289
94
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
94
        return AggregateFunctionPtr(result.release());
291
94
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2.49k
                                                       TArgs&&... args) {
268
2.49k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2.49k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2.49k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2.49k
        if (have_nullable(argument_types_)) {
275
1.49k
            std::visit(
276
1.49k
                    [&](auto result_is_nullable) {
277
1.49k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.49k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.49k
                                                         AggregateFunctionTemplate>(
280
1.49k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.49k
                        } else {
282
1.49k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.49k
                                                       AggregateFunctionTemplate>(
284
1.49k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.49k
                        }
286
1.49k
                    },
287
1.49k
                    make_bool_variant(result_is_nullable));
288
1.49k
        }
289
2.49k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2.49k
        return AggregateFunctionPtr(result.release());
291
2.49k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1
                                                       TArgs&&... args) {
268
1
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1
        return AggregateFunctionPtr(result.release());
291
1
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
754
                                                       TArgs&&... args) {
268
754
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
754
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
754
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
754
        if (have_nullable(argument_types_)) {
275
582
            std::visit(
276
582
                    [&](auto result_is_nullable) {
277
582
                        if (attr.enable_aggregate_function_null_v2) {
278
582
                            result.reset(new NullableV2T<false, result_is_nullable,
279
582
                                                         AggregateFunctionTemplate>(
280
582
                                    result.release(), argument_types_, attr.is_window_function));
281
582
                        } else {
282
582
                            result.reset(new NullableT<false, result_is_nullable,
283
582
                                                       AggregateFunctionTemplate>(
284
582
                                    result.release(), argument_types_, attr.is_window_function));
285
582
                        }
286
582
                    },
287
582
                    make_bool_variant(result_is_nullable));
288
582
        }
289
754
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
754
        return AggregateFunctionPtr(result.release());
291
754
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
47
                                                       TArgs&&... args) {
268
47
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
47
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
47
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
47
        if (have_nullable(argument_types_)) {
275
47
            std::visit(
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
47
                            result.reset(new NullableV2T<false, result_is_nullable,
279
47
                                                         AggregateFunctionTemplate>(
280
47
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
47
                            result.reset(new NullableT<false, result_is_nullable,
283
47
                                                       AggregateFunctionTemplate>(
284
47
                                    result.release(), argument_types_, attr.is_window_function));
285
47
                        }
286
47
                    },
287
47
                    make_bool_variant(result_is_nullable));
288
47
        }
289
47
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
47
        return AggregateFunctionPtr(result.release());
291
47
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
4
                                                       TArgs&&... args) {
268
4
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
4
        if (have_nullable(argument_types_)) {
275
4
            std::visit(
276
4
                    [&](auto result_is_nullable) {
277
4
                        if (attr.enable_aggregate_function_null_v2) {
278
4
                            result.reset(new NullableV2T<false, result_is_nullable,
279
4
                                                         AggregateFunctionTemplate>(
280
4
                                    result.release(), argument_types_, attr.is_window_function));
281
4
                        } else {
282
4
                            result.reset(new NullableT<false, result_is_nullable,
283
4
                                                       AggregateFunctionTemplate>(
284
4
                                    result.release(), argument_types_, attr.is_window_function));
285
4
                        }
286
4
                    },
287
4
                    make_bool_variant(result_is_nullable));
288
4
        }
289
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
4
        return AggregateFunctionPtr(result.release());
291
4
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
145
                                                       TArgs&&... args) {
268
145
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
145
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
145
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
145
        if (have_nullable(argument_types_)) {
275
118
            std::visit(
276
118
                    [&](auto result_is_nullable) {
277
118
                        if (attr.enable_aggregate_function_null_v2) {
278
118
                            result.reset(new NullableV2T<false, result_is_nullable,
279
118
                                                         AggregateFunctionTemplate>(
280
118
                                    result.release(), argument_types_, attr.is_window_function));
281
118
                        } else {
282
118
                            result.reset(new NullableT<false, result_is_nullable,
283
118
                                                       AggregateFunctionTemplate>(
284
118
                                    result.release(), argument_types_, attr.is_window_function));
285
118
                        }
286
118
                    },
287
118
                    make_bool_variant(result_is_nullable));
288
118
        }
289
145
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
145
        return AggregateFunctionPtr(result.release());
291
145
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
22
                                                       TArgs&&... args) {
268
22
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
22
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
22
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
22
        if (have_nullable(argument_types_)) {
275
22
            std::visit(
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
22
                            result.reset(new NullableV2T<false, result_is_nullable,
279
22
                                                         AggregateFunctionTemplate>(
280
22
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
22
                    },
287
22
                    make_bool_variant(result_is_nullable));
288
22
        }
289
22
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
22
        return AggregateFunctionPtr(result.release());
291
22
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
14
            std::visit(
276
14
                    [&](auto result_is_nullable) {
277
14
                        if (attr.enable_aggregate_function_null_v2) {
278
14
                            result.reset(new NullableV2T<false, result_is_nullable,
279
14
                                                         AggregateFunctionTemplate>(
280
14
                                    result.release(), argument_types_, attr.is_window_function));
281
14
                        } else {
282
14
                            result.reset(new NullableT<false, result_is_nullable,
283
14
                                                       AggregateFunctionTemplate>(
284
14
                                    result.release(), argument_types_, attr.is_window_function));
285
14
                        }
286
14
                    },
287
14
                    make_bool_variant(result_is_nullable));
288
14
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
14
                                                       TArgs&&... args) {
268
14
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
14
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
14
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
14
        if (have_nullable(argument_types_)) {
275
10
            std::visit(
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
10
                            result.reset(new NullableT<false, result_is_nullable,
283
10
                                                       AggregateFunctionTemplate>(
284
10
                                    result.release(), argument_types_, attr.is_window_function));
285
10
                        }
286
10
                    },
287
10
                    make_bool_variant(result_is_nullable));
288
10
        }
289
14
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
14
        return AggregateFunctionPtr(result.release());
291
14
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
6
                                                       TArgs&&... args) {
268
6
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
6
        if (have_nullable(argument_types_)) {
275
6
            std::visit(
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
6
                            result.reset(new NullableT<false, result_is_nullable,
283
6
                                                       AggregateFunctionTemplate>(
284
6
                                    result.release(), argument_types_, attr.is_window_function));
285
6
                        }
286
6
                    },
287
6
                    make_bool_variant(result_is_nullable));
288
6
        }
289
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
6
        return AggregateFunctionPtr(result.release());
291
6
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
586
                                                       TArgs&&... args) {
268
586
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
586
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
586
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
586
        if (have_nullable(argument_types_)) {
275
545
            std::visit(
276
545
                    [&](auto result_is_nullable) {
277
545
                        if (attr.enable_aggregate_function_null_v2) {
278
545
                            result.reset(new NullableV2T<false, result_is_nullable,
279
545
                                                         AggregateFunctionTemplate>(
280
545
                                    result.release(), argument_types_, attr.is_window_function));
281
545
                        } else {
282
545
                            result.reset(new NullableT<false, result_is_nullable,
283
545
                                                       AggregateFunctionTemplate>(
284
545
                                    result.release(), argument_types_, attr.is_window_function));
285
545
                        }
286
545
                    },
287
545
                    make_bool_variant(result_is_nullable));
288
545
        }
289
586
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
586
        return AggregateFunctionPtr(result.release());
291
586
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
46
                                                       TArgs&&... args) {
268
46
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
46
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
46
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
46
        if (have_nullable(argument_types_)) {
275
40
            std::visit(
276
40
                    [&](auto result_is_nullable) {
277
40
                        if (attr.enable_aggregate_function_null_v2) {
278
40
                            result.reset(new NullableV2T<false, result_is_nullable,
279
40
                                                         AggregateFunctionTemplate>(
280
40
                                    result.release(), argument_types_, attr.is_window_function));
281
40
                        } else {
282
40
                            result.reset(new NullableT<false, result_is_nullable,
283
40
                                                       AggregateFunctionTemplate>(
284
40
                                    result.release(), argument_types_, attr.is_window_function));
285
40
                        }
286
40
                    },
287
40
                    make_bool_variant(result_is_nullable));
288
40
        }
289
46
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
46
        return AggregateFunctionPtr(result.release());
291
46
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
6
                                                       TArgs&&... args) {
268
6
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
6
        if (have_nullable(argument_types_)) {
275
6
            std::visit(
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
6
                            result.reset(new NullableT<false, result_is_nullable,
283
6
                                                       AggregateFunctionTemplate>(
284
6
                                    result.release(), argument_types_, attr.is_window_function));
285
6
                        }
286
6
                    },
287
6
                    make_bool_variant(result_is_nullable));
288
6
        }
289
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
6
        return AggregateFunctionPtr(result.release());
291
6
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
10
                                                       TArgs&&... args) {
268
10
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
10
        if (have_nullable(argument_types_)) {
275
10
            std::visit(
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
10
                            result.reset(new NullableT<false, result_is_nullable,
283
10
                                                       AggregateFunctionTemplate>(
284
10
                                    result.release(), argument_types_, attr.is_window_function));
285
10
                        }
286
10
                    },
287
10
                    make_bool_variant(result_is_nullable));
288
10
        }
289
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
10
        return AggregateFunctionPtr(result.release());
291
10
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
10
                                                       TArgs&&... args) {
268
10
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
10
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
10
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
10
        if (have_nullable(argument_types_)) {
275
10
            std::visit(
276
10
                    [&](auto result_is_nullable) {
277
10
                        if (attr.enable_aggregate_function_null_v2) {
278
10
                            result.reset(new NullableV2T<false, result_is_nullable,
279
10
                                                         AggregateFunctionTemplate>(
280
10
                                    result.release(), argument_types_, attr.is_window_function));
281
10
                        } else {
282
10
                            result.reset(new NullableT<false, result_is_nullable,
283
10
                                                       AggregateFunctionTemplate>(
284
10
                                    result.release(), argument_types_, attr.is_window_function));
285
10
                        }
286
10
                    },
287
10
                    make_bool_variant(result_is_nullable));
288
10
        }
289
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
10
        return AggregateFunctionPtr(result.release());
291
10
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
7
                                                       TArgs&&... args) {
268
7
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
7
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
7
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
7
        if (have_nullable(argument_types_)) {
275
7
            std::visit(
276
7
                    [&](auto result_is_nullable) {
277
7
                        if (attr.enable_aggregate_function_null_v2) {
278
7
                            result.reset(new NullableV2T<false, result_is_nullable,
279
7
                                                         AggregateFunctionTemplate>(
280
7
                                    result.release(), argument_types_, attr.is_window_function));
281
7
                        } else {
282
7
                            result.reset(new NullableT<false, result_is_nullable,
283
7
                                                       AggregateFunctionTemplate>(
284
7
                                    result.release(), argument_types_, attr.is_window_function));
285
7
                        }
286
7
                    },
287
7
                    make_bool_variant(result_is_nullable));
288
7
        }
289
7
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
7
        return AggregateFunctionPtr(result.release());
291
7
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
58
                                                       TArgs&&... args) {
268
58
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
58
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
58
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
58
        if (have_nullable(argument_types_)) {
275
22
            std::visit(
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
22
                            result.reset(new NullableV2T<false, result_is_nullable,
279
22
                                                         AggregateFunctionTemplate>(
280
22
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
22
                    },
287
22
                    make_bool_variant(result_is_nullable));
288
22
        }
289
58
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
58
        return AggregateFunctionPtr(result.release());
291
58
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
49
                                                       TArgs&&... args) {
268
49
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
49
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
49
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
49
        if (have_nullable(argument_types_)) {
275
39
            std::visit(
276
39
                    [&](auto result_is_nullable) {
277
39
                        if (attr.enable_aggregate_function_null_v2) {
278
39
                            result.reset(new NullableV2T<false, result_is_nullable,
279
39
                                                         AggregateFunctionTemplate>(
280
39
                                    result.release(), argument_types_, attr.is_window_function));
281
39
                        } else {
282
39
                            result.reset(new NullableT<false, result_is_nullable,
283
39
                                                       AggregateFunctionTemplate>(
284
39
                                    result.release(), argument_types_, attr.is_window_function));
285
39
                        }
286
39
                    },
287
39
                    make_bool_variant(result_is_nullable));
288
39
        }
289
49
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
49
        return AggregateFunctionPtr(result.release());
291
49
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
8
                                                       TArgs&&... args) {
268
8
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
8
        if (have_nullable(argument_types_)) {
275
8
            std::visit(
276
8
                    [&](auto result_is_nullable) {
277
8
                        if (attr.enable_aggregate_function_null_v2) {
278
8
                            result.reset(new NullableV2T<false, result_is_nullable,
279
8
                                                         AggregateFunctionTemplate>(
280
8
                                    result.release(), argument_types_, attr.is_window_function));
281
8
                        } else {
282
8
                            result.reset(new NullableT<false, result_is_nullable,
283
8
                                                       AggregateFunctionTemplate>(
284
8
                                    result.release(), argument_types_, attr.is_window_function));
285
8
                        }
286
8
                    },
287
8
                    make_bool_variant(result_is_nullable));
288
8
        }
289
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
8
        return AggregateFunctionPtr(result.release());
291
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
501
                                                       TArgs&&... args) {
268
501
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
501
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
501
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
501
        if (have_nullable(argument_types_)) {
275
31
            std::visit(
276
31
                    [&](auto result_is_nullable) {
277
31
                        if (attr.enable_aggregate_function_null_v2) {
278
31
                            result.reset(new NullableV2T<false, result_is_nullable,
279
31
                                                         AggregateFunctionTemplate>(
280
31
                                    result.release(), argument_types_, attr.is_window_function));
281
31
                        } else {
282
31
                            result.reset(new NullableT<false, result_is_nullable,
283
31
                                                       AggregateFunctionTemplate>(
284
31
                                    result.release(), argument_types_, attr.is_window_function));
285
31
                        }
286
31
                    },
287
31
                    make_bool_variant(result_is_nullable));
288
31
        }
289
501
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
501
        return AggregateFunctionPtr(result.release());
291
501
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
9
                                                       TArgs&&... args) {
268
9
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
9
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
9
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
9
        if (have_nullable(argument_types_)) {
275
9
            std::visit(
276
9
                    [&](auto result_is_nullable) {
277
9
                        if (attr.enable_aggregate_function_null_v2) {
278
9
                            result.reset(new NullableV2T<false, result_is_nullable,
279
9
                                                         AggregateFunctionTemplate>(
280
9
                                    result.release(), argument_types_, attr.is_window_function));
281
9
                        } else {
282
9
                            result.reset(new NullableT<false, result_is_nullable,
283
9
                                                       AggregateFunctionTemplate>(
284
9
                                    result.release(), argument_types_, attr.is_window_function));
285
9
                        }
286
9
                    },
287
9
                    make_bool_variant(result_is_nullable));
288
9
        }
289
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
9
        return AggregateFunctionPtr(result.release());
291
9
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
93
                                                       TArgs&&... args) {
268
93
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
93
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
93
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
93
        if (have_nullable(argument_types_)) {
275
93
            std::visit(
276
93
                    [&](auto result_is_nullable) {
277
93
                        if (attr.enable_aggregate_function_null_v2) {
278
93
                            result.reset(new NullableV2T<false, result_is_nullable,
279
93
                                                         AggregateFunctionTemplate>(
280
93
                                    result.release(), argument_types_, attr.is_window_function));
281
93
                        } else {
282
93
                            result.reset(new NullableT<false, result_is_nullable,
283
93
                                                       AggregateFunctionTemplate>(
284
93
                                    result.release(), argument_types_, attr.is_window_function));
285
93
                        }
286
93
                    },
287
93
                    make_bool_variant(result_is_nullable));
288
93
        }
289
93
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
93
        return AggregateFunctionPtr(result.release());
291
93
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
24
                                                       TArgs&&... args) {
268
24
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
24
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
24
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
24
        if (have_nullable(argument_types_)) {
275
24
            std::visit(
276
24
                    [&](auto result_is_nullable) {
277
24
                        if (attr.enable_aggregate_function_null_v2) {
278
24
                            result.reset(new NullableV2T<false, result_is_nullable,
279
24
                                                         AggregateFunctionTemplate>(
280
24
                                    result.release(), argument_types_, attr.is_window_function));
281
24
                        } else {
282
24
                            result.reset(new NullableT<false, result_is_nullable,
283
24
                                                       AggregateFunctionTemplate>(
284
24
                                    result.release(), argument_types_, attr.is_window_function));
285
24
                        }
286
24
                    },
287
24
                    make_bool_variant(result_is_nullable));
288
24
        }
289
24
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
24
        return AggregateFunctionPtr(result.release());
291
24
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
96
                                                       TArgs&&... args) {
268
96
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
96
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
96
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
97
        if (have_nullable(argument_types_)) {
275
97
            std::visit(
276
97
                    [&](auto result_is_nullable) {
277
97
                        if (attr.enable_aggregate_function_null_v2) {
278
97
                            result.reset(new NullableV2T<false, result_is_nullable,
279
97
                                                         AggregateFunctionTemplate>(
280
97
                                    result.release(), argument_types_, attr.is_window_function));
281
97
                        } else {
282
97
                            result.reset(new NullableT<false, result_is_nullable,
283
97
                                                       AggregateFunctionTemplate>(
284
97
                                    result.release(), argument_types_, attr.is_window_function));
285
97
                        }
286
97
                    },
287
97
                    make_bool_variant(result_is_nullable));
288
97
        }
289
96
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
96
        return AggregateFunctionPtr(result.release());
291
96
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
102
                                                       TArgs&&... args) {
268
102
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
102
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
102
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
102
        if (have_nullable(argument_types_)) {
275
47
            std::visit(
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
47
                            result.reset(new NullableV2T<false, result_is_nullable,
279
47
                                                         AggregateFunctionTemplate>(
280
47
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
47
                            result.reset(new NullableT<false, result_is_nullable,
283
47
                                                       AggregateFunctionTemplate>(
284
47
                                    result.release(), argument_types_, attr.is_window_function));
285
47
                        }
286
47
                    },
287
47
                    make_bool_variant(result_is_nullable));
288
47
        }
289
102
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
102
        return AggregateFunctionPtr(result.release());
291
102
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
34
                                                       TArgs&&... args) {
268
34
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
34
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
34
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
34
        if (have_nullable(argument_types_)) {
275
26
            std::visit(
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
287
26
                    make_bool_variant(result_is_nullable));
288
26
        }
289
34
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
34
        return AggregateFunctionPtr(result.release());
291
34
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.18k
                                                       TArgs&&... args) {
268
1.18k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.18k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.18k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.18k
        if (have_nullable(argument_types_)) {
275
414
            std::visit(
276
414
                    [&](auto result_is_nullable) {
277
414
                        if (attr.enable_aggregate_function_null_v2) {
278
414
                            result.reset(new NullableV2T<false, result_is_nullable,
279
414
                                                         AggregateFunctionTemplate>(
280
414
                                    result.release(), argument_types_, attr.is_window_function));
281
414
                        } else {
282
414
                            result.reset(new NullableT<false, result_is_nullable,
283
414
                                                       AggregateFunctionTemplate>(
284
414
                                    result.release(), argument_types_, attr.is_window_function));
285
414
                        }
286
414
                    },
287
414
                    make_bool_variant(result_is_nullable));
288
414
        }
289
1.18k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.18k
        return AggregateFunctionPtr(result.release());
291
1.18k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
426
                                                       TArgs&&... args) {
268
426
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
426
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
426
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
426
        if (have_nullable(argument_types_)) {
275
387
            std::visit(
276
387
                    [&](auto result_is_nullable) {
277
387
                        if (attr.enable_aggregate_function_null_v2) {
278
387
                            result.reset(new NullableV2T<false, result_is_nullable,
279
387
                                                         AggregateFunctionTemplate>(
280
387
                                    result.release(), argument_types_, attr.is_window_function));
281
387
                        } else {
282
387
                            result.reset(new NullableT<false, result_is_nullable,
283
387
                                                       AggregateFunctionTemplate>(
284
387
                                    result.release(), argument_types_, attr.is_window_function));
285
387
                        }
286
387
                    },
287
387
                    make_bool_variant(result_is_nullable));
288
387
        }
289
426
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
426
        return AggregateFunctionPtr(result.release());
291
426
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2
                                                       TArgs&&... args) {
268
2
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2
        return AggregateFunctionPtr(result.release());
291
2
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
205
                                                       TArgs&&... args) {
268
205
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
205
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
205
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
205
        if (have_nullable(argument_types_)) {
275
193
            std::visit(
276
193
                    [&](auto result_is_nullable) {
277
193
                        if (attr.enable_aggregate_function_null_v2) {
278
193
                            result.reset(new NullableV2T<false, result_is_nullable,
279
193
                                                         AggregateFunctionTemplate>(
280
193
                                    result.release(), argument_types_, attr.is_window_function));
281
193
                        } else {
282
193
                            result.reset(new NullableT<false, result_is_nullable,
283
193
                                                       AggregateFunctionTemplate>(
284
193
                                    result.release(), argument_types_, attr.is_window_function));
285
193
                        }
286
193
                    },
287
193
                    make_bool_variant(result_is_nullable));
288
193
        }
289
205
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
205
        return AggregateFunctionPtr(result.release());
291
205
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
36
                                                       TArgs&&... args) {
268
36
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
36
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
36
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
36
        if (have_nullable(argument_types_)) {
275
28
            std::visit(
276
28
                    [&](auto result_is_nullable) {
277
28
                        if (attr.enable_aggregate_function_null_v2) {
278
28
                            result.reset(new NullableV2T<false, result_is_nullable,
279
28
                                                         AggregateFunctionTemplate>(
280
28
                                    result.release(), argument_types_, attr.is_window_function));
281
28
                        } else {
282
28
                            result.reset(new NullableT<false, result_is_nullable,
283
28
                                                       AggregateFunctionTemplate>(
284
28
                                    result.release(), argument_types_, attr.is_window_function));
285
28
                        }
286
28
                    },
287
28
                    make_bool_variant(result_is_nullable));
288
28
        }
289
36
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
36
        return AggregateFunctionPtr(result.release());
291
36
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
33
                                                       TArgs&&... args) {
268
33
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
33
        if (have_nullable(argument_types_)) {
275
25
            std::visit(
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
25
                            result.reset(new NullableT<false, result_is_nullable,
283
25
                                                       AggregateFunctionTemplate>(
284
25
                                    result.release(), argument_types_, attr.is_window_function));
285
25
                        }
286
25
                    },
287
25
                    make_bool_variant(result_is_nullable));
288
25
        }
289
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
33
        return AggregateFunctionPtr(result.release());
291
33
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
467
                                                       TArgs&&... args) {
268
467
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
467
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
467
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
467
        if (have_nullable(argument_types_)) {
275
455
            std::visit(
276
455
                    [&](auto result_is_nullable) {
277
455
                        if (attr.enable_aggregate_function_null_v2) {
278
455
                            result.reset(new NullableV2T<false, result_is_nullable,
279
455
                                                         AggregateFunctionTemplate>(
280
455
                                    result.release(), argument_types_, attr.is_window_function));
281
455
                        } else {
282
455
                            result.reset(new NullableT<false, result_is_nullable,
283
455
                                                       AggregateFunctionTemplate>(
284
455
                                    result.release(), argument_types_, attr.is_window_function));
285
455
                        }
286
455
                    },
287
455
                    make_bool_variant(result_is_nullable));
288
455
        }
289
467
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
467
        return AggregateFunctionPtr(result.release());
291
467
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
26
            std::visit(
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
287
26
                    make_bool_variant(result_is_nullable));
288
26
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
27
            std::visit(
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
27
                            result.reset(new NullableT<false, result_is_nullable,
283
27
                                                       AggregateFunctionTemplate>(
284
27
                                    result.release(), argument_types_, attr.is_window_function));
285
27
                        }
286
27
                    },
287
27
                    make_bool_variant(result_is_nullable));
288
27
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
33
                                                       TArgs&&... args) {
268
33
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
33
        if (have_nullable(argument_types_)) {
275
25
            std::visit(
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
25
                            result.reset(new NullableT<false, result_is_nullable,
283
25
                                                       AggregateFunctionTemplate>(
284
25
                                    result.release(), argument_types_, attr.is_window_function));
285
25
                        }
286
25
                    },
287
25
                    make_bool_variant(result_is_nullable));
288
25
        }
289
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
33
        return AggregateFunctionPtr(result.release());
291
33
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
33
                                                       TArgs&&... args) {
268
33
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
33
        if (have_nullable(argument_types_)) {
275
25
            std::visit(
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
25
                            result.reset(new NullableT<false, result_is_nullable,
283
25
                                                       AggregateFunctionTemplate>(
284
25
                                    result.release(), argument_types_, attr.is_window_function));
285
25
                        }
286
25
                    },
287
25
                    make_bool_variant(result_is_nullable));
288
25
        }
289
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
33
        return AggregateFunctionPtr(result.release());
291
33
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
469
                                                       TArgs&&... args) {
268
469
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
469
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
469
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
469
        if (have_nullable(argument_types_)) {
275
456
            std::visit(
276
456
                    [&](auto result_is_nullable) {
277
456
                        if (attr.enable_aggregate_function_null_v2) {
278
456
                            result.reset(new NullableV2T<false, result_is_nullable,
279
456
                                                         AggregateFunctionTemplate>(
280
456
                                    result.release(), argument_types_, attr.is_window_function));
281
456
                        } else {
282
456
                            result.reset(new NullableT<false, result_is_nullable,
283
456
                                                       AggregateFunctionTemplate>(
284
456
                                    result.release(), argument_types_, attr.is_window_function));
285
456
                        }
286
456
                    },
287
456
                    make_bool_variant(result_is_nullable));
288
456
        }
289
469
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
469
        return AggregateFunctionPtr(result.release());
291
469
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
26
            std::visit(
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
287
26
                    make_bool_variant(result_is_nullable));
288
26
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
27
            std::visit(
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
27
                            result.reset(new NullableT<false, result_is_nullable,
283
27
                                                       AggregateFunctionTemplate>(
284
27
                                    result.release(), argument_types_, attr.is_window_function));
285
27
                        }
286
27
                    },
287
27
                    make_bool_variant(result_is_nullable));
288
27
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
33
                                                       TArgs&&... args) {
268
33
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
33
        if (have_nullable(argument_types_)) {
275
25
            std::visit(
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
25
                            result.reset(new NullableT<false, result_is_nullable,
283
25
                                                       AggregateFunctionTemplate>(
284
25
                                    result.release(), argument_types_, attr.is_window_function));
285
25
                        }
286
25
                    },
287
25
                    make_bool_variant(result_is_nullable));
288
25
        }
289
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
33
        return AggregateFunctionPtr(result.release());
291
33
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
33
                                                       TArgs&&... args) {
268
33
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
33
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
33
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
33
        if (have_nullable(argument_types_)) {
275
25
            std::visit(
276
25
                    [&](auto result_is_nullable) {
277
25
                        if (attr.enable_aggregate_function_null_v2) {
278
25
                            result.reset(new NullableV2T<false, result_is_nullable,
279
25
                                                         AggregateFunctionTemplate>(
280
25
                                    result.release(), argument_types_, attr.is_window_function));
281
25
                        } else {
282
25
                            result.reset(new NullableT<false, result_is_nullable,
283
25
                                                       AggregateFunctionTemplate>(
284
25
                                    result.release(), argument_types_, attr.is_window_function));
285
25
                        }
286
25
                    },
287
25
                    make_bool_variant(result_is_nullable));
288
25
        }
289
33
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
33
        return AggregateFunctionPtr(result.release());
291
33
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
468
                                                       TArgs&&... args) {
268
468
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
468
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
468
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
468
        if (have_nullable(argument_types_)) {
275
455
            std::visit(
276
455
                    [&](auto result_is_nullable) {
277
455
                        if (attr.enable_aggregate_function_null_v2) {
278
455
                            result.reset(new NullableV2T<false, result_is_nullable,
279
455
                                                         AggregateFunctionTemplate>(
280
455
                                    result.release(), argument_types_, attr.is_window_function));
281
455
                        } else {
282
455
                            result.reset(new NullableT<false, result_is_nullable,
283
455
                                                       AggregateFunctionTemplate>(
284
455
                                    result.release(), argument_types_, attr.is_window_function));
285
455
                        }
286
455
                    },
287
455
                    make_bool_variant(result_is_nullable));
288
455
        }
289
468
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
468
        return AggregateFunctionPtr(result.release());
291
468
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
26
            std::visit(
276
26
                    [&](auto result_is_nullable) {
277
26
                        if (attr.enable_aggregate_function_null_v2) {
278
26
                            result.reset(new NullableV2T<false, result_is_nullable,
279
26
                                                         AggregateFunctionTemplate>(
280
26
                                    result.release(), argument_types_, attr.is_window_function));
281
26
                        } else {
282
26
                            result.reset(new NullableT<false, result_is_nullable,
283
26
                                                       AggregateFunctionTemplate>(
284
26
                                    result.release(), argument_types_, attr.is_window_function));
285
26
                        }
286
26
                    },
287
26
                    make_bool_variant(result_is_nullable));
288
26
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
35
                                                       TArgs&&... args) {
268
35
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
35
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
35
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
35
        if (have_nullable(argument_types_)) {
275
27
            std::visit(
276
27
                    [&](auto result_is_nullable) {
277
27
                        if (attr.enable_aggregate_function_null_v2) {
278
27
                            result.reset(new NullableV2T<false, result_is_nullable,
279
27
                                                         AggregateFunctionTemplate>(
280
27
                                    result.release(), argument_types_, attr.is_window_function));
281
27
                        } else {
282
27
                            result.reset(new NullableT<false, result_is_nullable,
283
27
                                                       AggregateFunctionTemplate>(
284
27
                                    result.release(), argument_types_, attr.is_window_function));
285
27
                        }
286
27
                    },
287
27
                    make_bool_variant(result_is_nullable));
288
27
        }
289
35
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
35
        return AggregateFunctionPtr(result.release());
291
35
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
2.31k
                                                       TArgs&&... args) {
268
2.31k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
2.31k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
2.31k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
2.31k
        if (have_nullable(argument_types_)) {
275
17
            std::visit(
276
17
                    [&](auto result_is_nullable) {
277
17
                        if (attr.enable_aggregate_function_null_v2) {
278
17
                            result.reset(new NullableV2T<false, result_is_nullable,
279
17
                                                         AggregateFunctionTemplate>(
280
17
                                    result.release(), argument_types_, attr.is_window_function));
281
17
                        } else {
282
17
                            result.reset(new NullableT<false, result_is_nullable,
283
17
                                                       AggregateFunctionTemplate>(
284
17
                                    result.release(), argument_types_, attr.is_window_function));
285
17
                        }
286
17
                    },
287
17
                    make_bool_variant(result_is_nullable));
288
17
        }
289
2.31k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
2.31k
        return AggregateFunctionPtr(result.release());
291
2.31k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.15k
                                                       TArgs&&... args) {
268
1.15k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.15k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.15k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.15k
        if (have_nullable(argument_types_)) {
275
5
            std::visit(
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
5
                            result.reset(new NullableT<false, result_is_nullable,
283
5
                                                       AggregateFunctionTemplate>(
284
5
                                    result.release(), argument_types_, attr.is_window_function));
285
5
                        }
286
5
                    },
287
5
                    make_bool_variant(result_is_nullable));
288
5
        }
289
1.15k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.15k
        return AggregateFunctionPtr(result.release());
291
1.15k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
458
                                                       TArgs&&... args) {
268
458
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
458
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
458
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
458
        if (have_nullable(argument_types_)) {
275
2
            std::visit(
276
2
                    [&](auto result_is_nullable) {
277
2
                        if (attr.enable_aggregate_function_null_v2) {
278
2
                            result.reset(new NullableV2T<false, result_is_nullable,
279
2
                                                         AggregateFunctionTemplate>(
280
2
                                    result.release(), argument_types_, attr.is_window_function));
281
2
                        } else {
282
2
                            result.reset(new NullableT<false, result_is_nullable,
283
2
                                                       AggregateFunctionTemplate>(
284
2
                                    result.release(), argument_types_, attr.is_window_function));
285
2
                        }
286
2
                    },
287
2
                    make_bool_variant(result_is_nullable));
288
2
        }
289
458
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
458
        return AggregateFunctionPtr(result.release());
291
458
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
921
                                                       TArgs&&... args) {
268
921
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
921
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
921
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
921
        if (have_nullable(argument_types_)) {
275
474
            std::visit(
276
474
                    [&](auto result_is_nullable) {
277
474
                        if (attr.enable_aggregate_function_null_v2) {
278
474
                            result.reset(new NullableV2T<false, result_is_nullable,
279
474
                                                         AggregateFunctionTemplate>(
280
474
                                    result.release(), argument_types_, attr.is_window_function));
281
474
                        } else {
282
474
                            result.reset(new NullableT<false, result_is_nullable,
283
474
                                                       AggregateFunctionTemplate>(
284
474
                                    result.release(), argument_types_, attr.is_window_function));
285
474
                        }
286
474
                    },
287
474
                    make_bool_variant(result_is_nullable));
288
474
        }
289
921
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
921
        return AggregateFunctionPtr(result.release());
291
921
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
980
                                                       TArgs&&... args) {
268
980
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
980
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
980
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
980
        if (have_nullable(argument_types_)) {
275
531
            std::visit(
276
531
                    [&](auto result_is_nullable) {
277
531
                        if (attr.enable_aggregate_function_null_v2) {
278
531
                            result.reset(new NullableV2T<false, result_is_nullable,
279
531
                                                         AggregateFunctionTemplate>(
280
531
                                    result.release(), argument_types_, attr.is_window_function));
281
531
                        } else {
282
531
                            result.reset(new NullableT<false, result_is_nullable,
283
531
                                                       AggregateFunctionTemplate>(
284
531
                                    result.release(), argument_types_, attr.is_window_function));
285
531
                        }
286
531
                    },
287
531
                    make_bool_variant(result_is_nullable));
288
531
        }
289
980
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
980
        return AggregateFunctionPtr(result.release());
291
980
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.20k
                                                       TArgs&&... args) {
268
1.20k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.20k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.20k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.20k
        if (have_nullable(argument_types_)) {
275
618
            std::visit(
276
618
                    [&](auto result_is_nullable) {
277
618
                        if (attr.enable_aggregate_function_null_v2) {
278
618
                            result.reset(new NullableV2T<false, result_is_nullable,
279
618
                                                         AggregateFunctionTemplate>(
280
618
                                    result.release(), argument_types_, attr.is_window_function));
281
618
                        } else {
282
618
                            result.reset(new NullableT<false, result_is_nullable,
283
618
                                                       AggregateFunctionTemplate>(
284
618
                                    result.release(), argument_types_, attr.is_window_function));
285
618
                        }
286
618
                    },
287
618
                    make_bool_variant(result_is_nullable));
288
618
        }
289
1.20k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.20k
        return AggregateFunctionPtr(result.release());
291
1.20k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.46k
                                                       TArgs&&... args) {
268
1.46k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.46k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.46k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.46k
        if (have_nullable(argument_types_)) {
275
598
            std::visit(
276
598
                    [&](auto result_is_nullable) {
277
598
                        if (attr.enable_aggregate_function_null_v2) {
278
598
                            result.reset(new NullableV2T<false, result_is_nullable,
279
598
                                                         AggregateFunctionTemplate>(
280
598
                                    result.release(), argument_types_, attr.is_window_function));
281
598
                        } else {
282
598
                            result.reset(new NullableT<false, result_is_nullable,
283
598
                                                       AggregateFunctionTemplate>(
284
598
                                    result.release(), argument_types_, attr.is_window_function));
285
598
                        }
286
598
                    },
287
598
                    make_bool_variant(result_is_nullable));
288
598
        }
289
1.46k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.46k
        return AggregateFunctionPtr(result.release());
291
1.46k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.30k
                                                       TArgs&&... args) {
268
1.30k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.30k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.30k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.30k
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
1.30k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.30k
        return AggregateFunctionPtr(result.release());
291
1.30k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
15
                                                       TArgs&&... args) {
268
15
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
15
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
15
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
15
        if (have_nullable(argument_types_)) {
275
0
            std::visit(
276
0
                    [&](auto result_is_nullable) {
277
0
                        if (attr.enable_aggregate_function_null_v2) {
278
0
                            result.reset(new NullableV2T<false, result_is_nullable,
279
0
                                                         AggregateFunctionTemplate>(
280
0
                                    result.release(), argument_types_, attr.is_window_function));
281
0
                        } else {
282
0
                            result.reset(new NullableT<false, result_is_nullable,
283
0
                                                       AggregateFunctionTemplate>(
284
0
                                    result.release(), argument_types_, attr.is_window_function));
285
0
                        }
286
0
                    },
287
0
                    make_bool_variant(result_is_nullable));
288
0
        }
289
15
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
15
        return AggregateFunctionPtr(result.release());
291
15
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
50
                                                       TArgs&&... args) {
268
50
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
50
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
50
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
50
        if (have_nullable(argument_types_)) {
275
50
            std::visit(
276
50
                    [&](auto result_is_nullable) {
277
50
                        if (attr.enable_aggregate_function_null_v2) {
278
50
                            result.reset(new NullableV2T<false, result_is_nullable,
279
50
                                                         AggregateFunctionTemplate>(
280
50
                                    result.release(), argument_types_, attr.is_window_function));
281
50
                        } else {
282
50
                            result.reset(new NullableT<false, result_is_nullable,
283
50
                                                       AggregateFunctionTemplate>(
284
50
                                    result.release(), argument_types_, attr.is_window_function));
285
50
                        }
286
50
                    },
287
50
                    make_bool_variant(result_is_nullable));
288
50
        }
289
50
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
50
        return AggregateFunctionPtr(result.release());
291
50
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
38
                                                       TArgs&&... args) {
268
38
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
38
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
38
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
38
        if (have_nullable(argument_types_)) {
275
38
            std::visit(
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
38
                            result.reset(new NullableV2T<false, result_is_nullable,
279
38
                                                         AggregateFunctionTemplate>(
280
38
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
287
38
                    make_bool_variant(result_is_nullable));
288
38
        }
289
38
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
38
        return AggregateFunctionPtr(result.release());
291
38
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
46
                                                       TArgs&&... args) {
268
46
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
46
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
46
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
46
        if (have_nullable(argument_types_)) {
275
46
            std::visit(
276
46
                    [&](auto result_is_nullable) {
277
46
                        if (attr.enable_aggregate_function_null_v2) {
278
46
                            result.reset(new NullableV2T<false, result_is_nullable,
279
46
                                                         AggregateFunctionTemplate>(
280
46
                                    result.release(), argument_types_, attr.is_window_function));
281
46
                        } else {
282
46
                            result.reset(new NullableT<false, result_is_nullable,
283
46
                                                       AggregateFunctionTemplate>(
284
46
                                    result.release(), argument_types_, attr.is_window_function));
285
46
                        }
286
46
                    },
287
46
                    make_bool_variant(result_is_nullable));
288
46
        }
289
46
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
46
        return AggregateFunctionPtr(result.release());
291
46
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
38
                                                       TArgs&&... args) {
268
38
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
38
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
38
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
38
        if (have_nullable(argument_types_)) {
275
38
            std::visit(
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
38
                            result.reset(new NullableV2T<false, result_is_nullable,
279
38
                                                         AggregateFunctionTemplate>(
280
38
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
287
38
                    make_bool_variant(result_is_nullable));
288
38
        }
289
38
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
38
        return AggregateFunctionPtr(result.release());
291
38
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
38
                                                       TArgs&&... args) {
268
38
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
38
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
38
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
38
        if (have_nullable(argument_types_)) {
275
38
            std::visit(
276
38
                    [&](auto result_is_nullable) {
277
38
                        if (attr.enable_aggregate_function_null_v2) {
278
38
                            result.reset(new NullableV2T<false, result_is_nullable,
279
38
                                                         AggregateFunctionTemplate>(
280
38
                                    result.release(), argument_types_, attr.is_window_function));
281
38
                        } else {
282
38
                            result.reset(new NullableT<false, result_is_nullable,
283
38
                                                       AggregateFunctionTemplate>(
284
38
                                    result.release(), argument_types_, attr.is_window_function));
285
38
                        }
286
38
                    },
287
38
                    make_bool_variant(result_is_nullable));
288
38
        }
289
38
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
38
        return AggregateFunctionPtr(result.release());
291
38
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
42
                                                       TArgs&&... args) {
268
42
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
42
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
42
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
42
        if (have_nullable(argument_types_)) {
275
42
            std::visit(
276
42
                    [&](auto result_is_nullable) {
277
42
                        if (attr.enable_aggregate_function_null_v2) {
278
42
                            result.reset(new NullableV2T<false, result_is_nullable,
279
42
                                                         AggregateFunctionTemplate>(
280
42
                                    result.release(), argument_types_, attr.is_window_function));
281
42
                        } else {
282
42
                            result.reset(new NullableT<false, result_is_nullable,
283
42
                                                       AggregateFunctionTemplate>(
284
42
                                    result.release(), argument_types_, attr.is_window_function));
285
42
                        }
286
42
                    },
287
42
                    make_bool_variant(result_is_nullable));
288
42
        }
289
42
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
42
        return AggregateFunctionPtr(result.release());
291
42
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
22
                                                       TArgs&&... args) {
268
22
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
22
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
22
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
22
        if (have_nullable(argument_types_)) {
275
22
            std::visit(
276
22
                    [&](auto result_is_nullable) {
277
22
                        if (attr.enable_aggregate_function_null_v2) {
278
22
                            result.reset(new NullableV2T<false, result_is_nullable,
279
22
                                                         AggregateFunctionTemplate>(
280
22
                                    result.release(), argument_types_, attr.is_window_function));
281
22
                        } else {
282
22
                            result.reset(new NullableT<false, result_is_nullable,
283
22
                                                       AggregateFunctionTemplate>(
284
22
                                    result.release(), argument_types_, attr.is_window_function));
285
22
                        }
286
22
                    },
287
22
                    make_bool_variant(result_is_nullable));
288
22
        }
289
22
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
22
        return AggregateFunctionPtr(result.release());
291
22
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
47
                                                       TArgs&&... args) {
268
47
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
47
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
47
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
47
        if (have_nullable(argument_types_)) {
275
47
            std::visit(
276
47
                    [&](auto result_is_nullable) {
277
47
                        if (attr.enable_aggregate_function_null_v2) {
278
47
                            result.reset(new NullableV2T<false, result_is_nullable,
279
47
                                                         AggregateFunctionTemplate>(
280
47
                                    result.release(), argument_types_, attr.is_window_function));
281
47
                        } else {
282
47
                            result.reset(new NullableT<false, result_is_nullable,
283
47
                                                       AggregateFunctionTemplate>(
284
47
                                    result.release(), argument_types_, attr.is_window_function));
285
47
                        }
286
47
                    },
287
47
                    make_bool_variant(result_is_nullable));
288
47
        }
289
47
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
47
        return AggregateFunctionPtr(result.release());
291
47
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
24
                                                       TArgs&&... args) {
268
24
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
24
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
24
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
24
        if (have_nullable(argument_types_)) {
275
24
            std::visit(
276
24
                    [&](auto result_is_nullable) {
277
24
                        if (attr.enable_aggregate_function_null_v2) {
278
24
                            result.reset(new NullableV2T<false, result_is_nullable,
279
24
                                                         AggregateFunctionTemplate>(
280
24
                                    result.release(), argument_types_, attr.is_window_function));
281
24
                        } else {
282
24
                            result.reset(new NullableT<false, result_is_nullable,
283
24
                                                       AggregateFunctionTemplate>(
284
24
                                    result.release(), argument_types_, attr.is_window_function));
285
24
                        }
286
24
                    },
287
24
                    make_bool_variant(result_is_nullable));
288
24
        }
289
24
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
24
        return AggregateFunctionPtr(result.release());
291
24
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
16
                                                       TArgs&&... args) {
268
16
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
16
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
16
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
16
        if (have_nullable(argument_types_)) {
275
16
            std::visit(
276
16
                    [&](auto result_is_nullable) {
277
16
                        if (attr.enable_aggregate_function_null_v2) {
278
16
                            result.reset(new NullableV2T<false, result_is_nullable,
279
16
                                                         AggregateFunctionTemplate>(
280
16
                                    result.release(), argument_types_, attr.is_window_function));
281
16
                        } else {
282
16
                            result.reset(new NullableT<false, result_is_nullable,
283
16
                                                       AggregateFunctionTemplate>(
284
16
                                    result.release(), argument_types_, attr.is_window_function));
285
16
                        }
286
16
                    },
287
16
                    make_bool_variant(result_is_nullable));
288
16
        }
289
16
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
16
        return AggregateFunctionPtr(result.release());
291
16
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
16
                                                       TArgs&&... args) {
268
16
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
16
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
16
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
16
        if (have_nullable(argument_types_)) {
275
16
            std::visit(
276
16
                    [&](auto result_is_nullable) {
277
16
                        if (attr.enable_aggregate_function_null_v2) {
278
16
                            result.reset(new NullableV2T<false, result_is_nullable,
279
16
                                                         AggregateFunctionTemplate>(
280
16
                                    result.release(), argument_types_, attr.is_window_function));
281
16
                        } else {
282
16
                            result.reset(new NullableT<false, result_is_nullable,
283
16
                                                       AggregateFunctionTemplate>(
284
16
                                    result.release(), argument_types_, attr.is_window_function));
285
16
                        }
286
16
                    },
287
16
                    make_bool_variant(result_is_nullable));
288
16
        }
289
16
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
16
        return AggregateFunctionPtr(result.release());
291
16
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
40
                                                       TArgs&&... args) {
268
40
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
40
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
40
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
40
        if (have_nullable(argument_types_)) {
275
40
            std::visit(
276
40
                    [&](auto result_is_nullable) {
277
40
                        if (attr.enable_aggregate_function_null_v2) {
278
40
                            result.reset(new NullableV2T<false, result_is_nullable,
279
40
                                                         AggregateFunctionTemplate>(
280
40
                                    result.release(), argument_types_, attr.is_window_function));
281
40
                        } else {
282
40
                            result.reset(new NullableT<false, result_is_nullable,
283
40
                                                       AggregateFunctionTemplate>(
284
40
                                    result.release(), argument_types_, attr.is_window_function));
285
40
                        }
286
40
                    },
287
40
                    make_bool_variant(result_is_nullable));
288
40
        }
289
40
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
40
        return AggregateFunctionPtr(result.release());
291
40
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
125
                                                       TArgs&&... args) {
268
125
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
125
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
125
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
125
        if (have_nullable(argument_types_)) {
275
125
            std::visit(
276
125
                    [&](auto result_is_nullable) {
277
125
                        if (attr.enable_aggregate_function_null_v2) {
278
125
                            result.reset(new NullableV2T<false, result_is_nullable,
279
125
                                                         AggregateFunctionTemplate>(
280
125
                                    result.release(), argument_types_, attr.is_window_function));
281
125
                        } else {
282
125
                            result.reset(new NullableT<false, result_is_nullable,
283
125
                                                       AggregateFunctionTemplate>(
284
125
                                    result.release(), argument_types_, attr.is_window_function));
285
125
                        }
286
125
                    },
287
125
                    make_bool_variant(result_is_nullable));
288
125
        }
289
125
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
125
        return AggregateFunctionPtr(result.release());
291
125
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.09k
                                                       TArgs&&... args) {
268
1.09k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.09k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.09k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.09k
        if (have_nullable(argument_types_)) {
275
1.03k
            std::visit(
276
1.03k
                    [&](auto result_is_nullable) {
277
1.03k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.03k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.03k
                                                         AggregateFunctionTemplate>(
280
1.03k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.03k
                        } else {
282
1.03k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.03k
                                                       AggregateFunctionTemplate>(
284
1.03k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.03k
                        }
286
1.03k
                    },
287
1.03k
                    make_bool_variant(result_is_nullable));
288
1.03k
        }
289
1.09k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.09k
        return AggregateFunctionPtr(result.release());
291
1.09k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.14k
                                                       TArgs&&... args) {
268
1.14k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.14k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.14k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.14k
        if (have_nullable(argument_types_)) {
275
1.08k
            std::visit(
276
1.08k
                    [&](auto result_is_nullable) {
277
1.08k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.08k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.08k
                                                         AggregateFunctionTemplate>(
280
1.08k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.08k
                        } else {
282
1.08k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.08k
                                                       AggregateFunctionTemplate>(
284
1.08k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.08k
                        }
286
1.08k
                    },
287
1.08k
                    make_bool_variant(result_is_nullable));
288
1.08k
        }
289
1.14k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.14k
        return AggregateFunctionPtr(result.release());
291
1.14k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
1.10k
                                                       TArgs&&... args) {
268
1.10k
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
1.10k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
1.10k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
1.10k
        if (have_nullable(argument_types_)) {
275
1.04k
            std::visit(
276
1.04k
                    [&](auto result_is_nullable) {
277
1.04k
                        if (attr.enable_aggregate_function_null_v2) {
278
1.04k
                            result.reset(new NullableV2T<false, result_is_nullable,
279
1.04k
                                                         AggregateFunctionTemplate>(
280
1.04k
                                    result.release(), argument_types_, attr.is_window_function));
281
1.04k
                        } else {
282
1.04k
                            result.reset(new NullableT<false, result_is_nullable,
283
1.04k
                                                       AggregateFunctionTemplate>(
284
1.04k
                                    result.release(), argument_types_, attr.is_window_function));
285
1.04k
                        }
286
1.04k
                    },
287
1.04k
                    make_bool_variant(result_is_nullable));
288
1.04k
        }
289
1.10k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
1.10k
        return AggregateFunctionPtr(result.release());
291
1.10k
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
624
                                                       TArgs&&... args) {
268
624
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
624
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
624
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
624
        if (have_nullable(argument_types_)) {
275
564
            std::visit(
276
564
                    [&](auto result_is_nullable) {
277
564
                        if (attr.enable_aggregate_function_null_v2) {
278
564
                            result.reset(new NullableV2T<false, result_is_nullable,
279
564
                                                         AggregateFunctionTemplate>(
280
564
                                    result.release(), argument_types_, attr.is_window_function));
281
564
                        } else {
282
564
                            result.reset(new NullableT<false, result_is_nullable,
283
564
                                                       AggregateFunctionTemplate>(
284
564
                                    result.release(), argument_types_, attr.is_window_function));
285
564
                        }
286
564
                    },
287
564
                    make_bool_variant(result_is_nullable));
288
564
        }
289
624
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
624
        return AggregateFunctionPtr(result.release());
291
624
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
586
                                                       TArgs&&... args) {
268
586
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
586
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
586
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
586
        if (have_nullable(argument_types_)) {
275
82
            std::visit(
276
82
                    [&](auto result_is_nullable) {
277
82
                        if (attr.enable_aggregate_function_null_v2) {
278
82
                            result.reset(new NullableV2T<false, result_is_nullable,
279
82
                                                         AggregateFunctionTemplate>(
280
82
                                    result.release(), argument_types_, attr.is_window_function));
281
82
                        } else {
282
82
                            result.reset(new NullableT<false, result_is_nullable,
283
82
                                                       AggregateFunctionTemplate>(
284
82
                                    result.release(), argument_types_, attr.is_window_function));
285
82
                        }
286
82
                    },
287
82
                    make_bool_variant(result_is_nullable));
288
82
        }
289
586
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
586
        return AggregateFunctionPtr(result.release());
291
586
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
7
                                                       TArgs&&... args) {
268
7
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
7
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
7
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
7
        if (have_nullable(argument_types_)) {
275
5
            std::visit(
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
5
                            result.reset(new NullableT<false, result_is_nullable,
283
5
                                                       AggregateFunctionTemplate>(
284
5
                                    result.release(), argument_types_, attr.is_window_function));
285
5
                        }
286
5
                    },
287
5
                    make_bool_variant(result_is_nullable));
288
5
        }
289
7
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
7
        return AggregateFunctionPtr(result.release());
291
7
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
8
                                                       TArgs&&... args) {
268
8
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
8
        if (have_nullable(argument_types_)) {
275
6
            std::visit(
276
6
                    [&](auto result_is_nullable) {
277
6
                        if (attr.enable_aggregate_function_null_v2) {
278
6
                            result.reset(new NullableV2T<false, result_is_nullable,
279
6
                                                         AggregateFunctionTemplate>(
280
6
                                    result.release(), argument_types_, attr.is_window_function));
281
6
                        } else {
282
6
                            result.reset(new NullableT<false, result_is_nullable,
283
6
                                                       AggregateFunctionTemplate>(
284
6
                                    result.release(), argument_types_, attr.is_window_function));
285
6
                        }
286
6
                    },
287
6
                    make_bool_variant(result_is_nullable));
288
6
        }
289
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
8
        return AggregateFunctionPtr(result.release());
291
8
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
7
                                                       TArgs&&... args) {
268
7
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
7
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
7
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
7
        if (have_nullable(argument_types_)) {
275
5
            std::visit(
276
5
                    [&](auto result_is_nullable) {
277
5
                        if (attr.enable_aggregate_function_null_v2) {
278
5
                            result.reset(new NullableV2T<false, result_is_nullable,
279
5
                                                         AggregateFunctionTemplate>(
280
5
                                    result.release(), argument_types_, attr.is_window_function));
281
5
                        } else {
282
5
                            result.reset(new NullableT<false, result_is_nullable,
283
5
                                                       AggregateFunctionTemplate>(
284
5
                                    result.release(), argument_types_, attr.is_window_function));
285
5
                        }
286
5
                    },
287
5
                    make_bool_variant(result_is_nullable));
288
5
        }
289
7
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
7
        return AggregateFunctionPtr(result.release());
291
7
    }
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
267
24
                                                       TArgs&&... args) {
268
24
        if (!(argument_types_.size() == 1)) {
269
0
            throw doris::Exception(Status::InternalError(
270
0
                    "create_unary_arguments: argument_types_ size must be 1"));
271
0
        }
272
24
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
273
24
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
274
24
        if (have_nullable(argument_types_)) {
275
21
            std::visit(
276
21
                    [&](auto result_is_nullable) {
277
21
                        if (attr.enable_aggregate_function_null_v2) {
278
21
                            result.reset(new NullableV2T<false, result_is_nullable,
279
21
                                                         AggregateFunctionTemplate>(
280
21
                                    result.release(), argument_types_, attr.is_window_function));
281
21
                        } else {
282
21
                            result.reset(new NullableT<false, result_is_nullable,
283
21
                                                       AggregateFunctionTemplate>(
284
21
                                    result.release(), argument_types_, attr.is_window_function));
285
21
                        }
286
21
                    },
287
21
                    make_bool_variant(result_is_nullable));
288
21
        }
289
24
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
290
24
        return AggregateFunctionPtr(result.release());
291
24
    }
292
293
    template <typename AggregateFunctionTemplate, typename... TArgs>
294
    static AggregateFunctionPtr create_unary_arguments_return_not_nullable(
295
            const DataTypes& argument_types_, const bool result_is_nullable,
296
28.7k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
28.7k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
28.7k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
28.7k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
28.7k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
28.7k
        if (have_nullable(argument_types_)) {
309
15.3k
            if (attr.enable_aggregate_function_null_v2) {
310
14.2k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
14.2k
                        result.release(), argument_types_, attr.is_window_function));
312
14.2k
            } else {
313
1.16k
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
1.16k
                        result.release(), argument_types_, attr.is_window_function));
315
1.16k
            }
316
15.3k
        }
317
28.7k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
28.7k
        return AggregateFunctionPtr(result.release());
319
28.7k
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
457
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
457
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
457
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
457
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
457
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
457
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
457
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
457
        return AggregateFunctionPtr(result.release());
319
457
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
4
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
4
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
4
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
4
        return AggregateFunctionPtr(result.release());
319
4
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
6
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
6
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
6
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
6
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
6
        return AggregateFunctionPtr(result.release());
319
6
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
6
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
6
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
6
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
6
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
6
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
6
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
6
        return AggregateFunctionPtr(result.release());
319
6
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
18
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
18
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
18
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
18
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
18
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
18
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
18
        return AggregateFunctionPtr(result.release());
319
18
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
15
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
15
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
15
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
15
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
15
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
15
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
15
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
15
        return AggregateFunctionPtr(result.release());
319
15
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
23
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
23
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
23
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
23
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
23
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
23
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
23
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
23
        return AggregateFunctionPtr(result.release());
319
23
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
4
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
4
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
4
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
4
        return AggregateFunctionPtr(result.release());
319
4
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
4
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
4
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
4
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
4
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
4
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
4
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
4
        return AggregateFunctionPtr(result.release());
319
4
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
16
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
16
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
16
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
16
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
16
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
16
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
16
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
16
        return AggregateFunctionPtr(result.release());
319
16
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
2
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
2
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
2
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
2
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
2
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
2
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
2
        return AggregateFunctionPtr(result.release());
319
2
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
12
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
12
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
12
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
12
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
12
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
12
        if (have_nullable(argument_types_)) {
309
0
            if (attr.enable_aggregate_function_null_v2) {
310
0
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
0
                        result.release(), argument_types_, attr.is_window_function));
312
0
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
0
        }
317
12
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
12
        return AggregateFunctionPtr(result.release());
319
12
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
60
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
60
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
60
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
60
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
60
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
60
        if (have_nullable(argument_types_)) {
309
44
            if (attr.enable_aggregate_function_null_v2) {
310
44
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
44
                        result.release(), argument_types_, attr.is_window_function));
312
44
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
44
        }
317
60
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
60
        return AggregateFunctionPtr(result.release());
319
60
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
265
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
265
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
265
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
265
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
265
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
265
        if (have_nullable(argument_types_)) {
309
149
            if (attr.enable_aggregate_function_null_v2) {
310
149
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
149
                        result.release(), argument_types_, attr.is_window_function));
312
149
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
149
        }
317
265
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
265
        return AggregateFunctionPtr(result.release());
319
265
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
190
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
190
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
190
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
190
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
190
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
190
        if (have_nullable(argument_types_)) {
309
71
            if (attr.enable_aggregate_function_null_v2) {
310
71
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
71
                        result.release(), argument_types_, attr.is_window_function));
312
71
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
71
        }
317
190
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
190
        return AggregateFunctionPtr(result.release());
319
190
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
11.2k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
11.2k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
11.2k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
11.2k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
11.2k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
11.2k
        if (have_nullable(argument_types_)) {
309
7.31k
            if (attr.enable_aggregate_function_null_v2) {
310
6.15k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
6.15k
                        result.release(), argument_types_, attr.is_window_function));
312
6.15k
            } else {
313
1.16k
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
1.16k
                        result.release(), argument_types_, attr.is_window_function));
315
1.16k
            }
316
7.31k
        }
317
11.2k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
11.2k
        return AggregateFunctionPtr(result.release());
319
11.2k
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
3.83k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
3.83k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
3.83k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
3.83k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
3.83k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
3.83k
        if (have_nullable(argument_types_)) {
309
2.13k
            if (attr.enable_aggregate_function_null_v2) {
310
2.13k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
2.13k
                        result.release(), argument_types_, attr.is_window_function));
312
2.13k
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
2.13k
        }
317
3.83k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
3.83k
        return AggregateFunctionPtr(result.release());
319
3.83k
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
212
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
212
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
212
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
212
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
212
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
212
        if (have_nullable(argument_types_)) {
309
89
            if (attr.enable_aggregate_function_null_v2) {
310
89
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
89
                        result.release(), argument_types_, attr.is_window_function));
312
89
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
89
        }
317
212
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
212
        return AggregateFunctionPtr(result.release());
319
212
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
66
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
66
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
66
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
66
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
66
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
66
        if (have_nullable(argument_types_)) {
309
50
            if (attr.enable_aggregate_function_null_v2) {
310
50
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
50
                        result.release(), argument_types_, attr.is_window_function));
312
50
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
50
        }
317
66
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
66
        return AggregateFunctionPtr(result.release());
319
66
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
90
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
90
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
90
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
90
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
90
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
90
        if (have_nullable(argument_types_)) {
309
62
            if (attr.enable_aggregate_function_null_v2) {
310
62
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
62
                        result.release(), argument_types_, attr.is_window_function));
312
62
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
62
        }
317
90
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
90
        return AggregateFunctionPtr(result.release());
319
90
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
56
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
56
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
56
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
56
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
56
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
56
        if (have_nullable(argument_types_)) {
309
40
            if (attr.enable_aggregate_function_null_v2) {
310
40
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
40
                        result.release(), argument_types_, attr.is_window_function));
312
40
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
40
        }
317
56
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
56
        return AggregateFunctionPtr(result.release());
319
56
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
1.96k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
1.96k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
1.96k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
1.96k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
1.96k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
1.96k
        if (have_nullable(argument_types_)) {
309
1.10k
            if (attr.enable_aggregate_function_null_v2) {
310
1.10k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
1.10k
                        result.release(), argument_types_, attr.is_window_function));
312
1.10k
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
1.10k
        }
317
1.96k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
1.96k
        return AggregateFunctionPtr(result.release());
319
1.96k
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
712
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
712
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
712
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
712
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
712
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
712
        if (have_nullable(argument_types_)) {
309
540
            if (attr.enable_aggregate_function_null_v2) {
310
540
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
540
                        result.release(), argument_types_, attr.is_window_function));
312
540
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
540
        }
317
712
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
712
        return AggregateFunctionPtr(result.release());
319
712
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
26
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
26
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
26
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
26
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
26
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
26
        if (have_nullable(argument_types_)) {
309
26
            if (attr.enable_aggregate_function_null_v2) {
310
26
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
26
                        result.release(), argument_types_, attr.is_window_function));
312
26
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
26
        }
317
26
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
26
        return AggregateFunctionPtr(result.release());
319
26
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
4.41k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
4.41k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
4.41k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
4.41k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
4.41k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
4.41k
        if (have_nullable(argument_types_)) {
309
2.22k
            if (attr.enable_aggregate_function_null_v2) {
310
2.22k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
2.22k
                        result.release(), argument_types_, attr.is_window_function));
312
2.22k
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
2.22k
        }
317
4.41k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
4.41k
        return AggregateFunctionPtr(result.release());
319
4.41k
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
4.55k
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
4.55k
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
4.56k
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
4.55k
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
4.55k
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
4.55k
        if (have_nullable(argument_types_)) {
309
1.30k
            if (attr.enable_aggregate_function_null_v2) {
310
1.30k
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
1.30k
                        result.release(), argument_types_, attr.is_window_function));
312
1.30k
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
1.30k
        }
317
4.55k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
4.55k
        return AggregateFunctionPtr(result.release());
319
4.55k
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
464
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
464
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
464
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
464
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
464
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
464
        if (have_nullable(argument_types_)) {
309
192
            if (attr.enable_aggregate_function_null_v2) {
310
192
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
192
                        result.release(), argument_types_, attr.is_window_function));
312
192
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
192
        }
317
464
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
464
        return AggregateFunctionPtr(result.release());
319
464
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
8
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
8
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
8
        if (have_nullable(argument_types_)) {
309
8
            if (attr.enable_aggregate_function_null_v2) {
310
8
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
8
                        result.release(), argument_types_, attr.is_window_function));
312
8
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
8
        }
317
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
8
        return AggregateFunctionPtr(result.release());
319
8
    }
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
296
8
            const AggregateFunctionAttr& attr, TArgs&&... args) {
297
8
        if (!(argument_types_.size() == 1)) {
298
0
            throw doris::Exception(Status::InternalError(
299
0
                    "create_unary_arguments_return_not_nullable: argument_types_ size must be 1"));
300
0
        }
301
8
        if (!attr.is_foreach && result_is_nullable) {
302
0
            throw doris::Exception(
303
0
                    Status::InternalError("create_unary_arguments_return_not_nullable: "
304
0
                                          "result_is_nullable must be false"));
305
0
        }
306
8
        std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>(
307
8
                std::forward<TArgs>(args)..., remove_nullable(argument_types_)));
308
8
        if (have_nullable(argument_types_)) {
309
8
            if (attr.enable_aggregate_function_null_v2) {
310
8
                result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>(
311
8
                        result.release(), argument_types_, attr.is_window_function));
312
8
            } else {
313
0
                result.reset(new NullableT<false, false, AggregateFunctionTemplate>(
314
0
                        result.release(), argument_types_, attr.is_window_function));
315
0
            }
316
8
        }
317
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
318
8
        return AggregateFunctionPtr(result.release());
319
8
    }
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
320
321
    /// AggregateFunctionTemplate will handle the nullable arguments, no need to use
322
    /// AggregateFunctionNullVariadicInline/AggregateFunctionNullUnaryInline
323
    template <typename AggregateFunctionTemplate, typename... TArgs>
324
    static AggregateFunctionPtr create_ignore_nullable(const DataTypes& argument_types_,
325
                                                       const bool /*result_is_nullable*/,
326
                                                       const AggregateFunctionAttr& /*attr*/,
327
2.19k
                                                       TArgs&&... args) {
328
2.19k
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2.19k
                std::forward<TArgs>(args)..., argument_types_);
330
2.19k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2.19k
        return AggregateFunctionPtr(result.release());
332
2.19k
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
26
                                                       TArgs&&... args) {
328
26
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
26
                std::forward<TArgs>(args)..., argument_types_);
330
26
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
26
        return AggregateFunctionPtr(result.release());
332
26
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
18
                                                       TArgs&&... args) {
328
18
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
18
                std::forward<TArgs>(args)..., argument_types_);
330
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
18
        return AggregateFunctionPtr(result.release());
332
18
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
8
                                                       TArgs&&... args) {
328
8
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
8
                std::forward<TArgs>(args)..., argument_types_);
330
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
8
        return AggregateFunctionPtr(result.release());
332
8
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
11
                                                       TArgs&&... args) {
328
11
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
11
                std::forward<TArgs>(args)..., argument_types_);
330
11
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
11
        return AggregateFunctionPtr(result.release());
332
11
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
26
                                                       TArgs&&... args) {
328
26
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
26
                std::forward<TArgs>(args)..., argument_types_);
330
26
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
26
        return AggregateFunctionPtr(result.release());
332
26
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
18
                                                       TArgs&&... args) {
328
18
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
18
                std::forward<TArgs>(args)..., argument_types_);
330
18
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
18
        return AggregateFunctionPtr(result.release());
332
18
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
8
                                                       TArgs&&... args) {
328
8
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
8
                std::forward<TArgs>(args)..., argument_types_);
330
8
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
8
        return AggregateFunctionPtr(result.release());
332
8
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
11
                                                       TArgs&&... args) {
328
11
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
11
                std::forward<TArgs>(args)..., argument_types_);
330
11
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
11
        return AggregateFunctionPtr(result.release());
332
11
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
6
                                                       TArgs&&... args) {
328
6
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
6
                std::forward<TArgs>(args)..., argument_types_);
330
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
6
        return AggregateFunctionPtr(result.release());
332
6
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
3
                                                       TArgs&&... args) {
328
3
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
3
                std::forward<TArgs>(args)..., argument_types_);
330
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
3
        return AggregateFunctionPtr(result.release());
332
3
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
6
                                                       TArgs&&... args) {
328
6
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
6
                std::forward<TArgs>(args)..., argument_types_);
330
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
6
        return AggregateFunctionPtr(result.release());
332
6
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
3
                                                       TArgs&&... args) {
328
3
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
3
                std::forward<TArgs>(args)..., argument_types_);
330
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
3
        return AggregateFunctionPtr(result.release());
332
3
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
6
                                                       TArgs&&... args) {
328
6
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
6
                std::forward<TArgs>(args)..., argument_types_);
330
6
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
6
        return AggregateFunctionPtr(result.release());
332
6
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
3
                                                       TArgs&&... args) {
328
3
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
3
                std::forward<TArgs>(args)..., argument_types_);
330
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
3
        return AggregateFunctionPtr(result.release());
332
3
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
206
                                                       TArgs&&... args) {
328
206
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
206
                std::forward<TArgs>(args)..., argument_types_);
330
206
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
206
        return AggregateFunctionPtr(result.release());
332
206
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
5
                                                       TArgs&&... args) {
328
5
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
5
                std::forward<TArgs>(args)..., argument_types_);
330
5
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
5
        return AggregateFunctionPtr(result.release());
332
5
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
3
                                                       TArgs&&... args) {
328
3
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
3
                std::forward<TArgs>(args)..., argument_types_);
330
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
3
        return AggregateFunctionPtr(result.release());
332
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
4
                                                       TArgs&&... args) {
328
4
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
4
                std::forward<TArgs>(args)..., argument_types_);
330
4
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
4
        return AggregateFunctionPtr(result.release());
332
4
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
455
                                                       TArgs&&... args) {
328
455
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
455
                std::forward<TArgs>(args)..., argument_types_);
330
455
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
455
        return AggregateFunctionPtr(result.release());
332
455
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
10
                                                       TArgs&&... args) {
328
10
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
10
                std::forward<TArgs>(args)..., argument_types_);
330
10
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
10
        return AggregateFunctionPtr(result.release());
332
10
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE2EEELS4_2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE3EEELS4_3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE4EEELS4_4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE5EEELS4_5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
2
                                                       TArgs&&... args) {
328
2
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
2
                std::forward<TArgs>(args)..., argument_types_);
330
2
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
2
        return AggregateFunctionPtr(result.release());
332
2
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE6EEELS4_6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
3
                                                       TArgs&&... args) {
328
3
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
3
                std::forward<TArgs>(args)..., argument_types_);
330
3
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
3
        return AggregateFunctionPtr(result.release());
332
3
    }
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE7EEELS4_7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE8EEELS4_8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE9EEELS4_9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE28EEELS4_28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE29EEELS4_29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE20EEELS4_20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE30EEELS4_30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE35EEELS4_35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE11EEELS4_11EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE25EEELS4_25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE26EEELS4_26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE12EEELS4_12EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE27EEELS4_27EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE42EEELS4_42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE36EEELS4_36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE37EEELS4_37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE23EEELS4_23EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
9
                                                       TArgs&&... args) {
328
9
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
9
                std::forward<TArgs>(args)..., argument_types_);
330
9
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
9
        return AggregateFunctionPtr(result.release());
332
9
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionMapAggV2INS_29AggregateFunctionMapAggDataV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
1.23k
                                                       TArgs&&... args) {
328
1.23k
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
1.23k
                std::forward<TArgs>(args)..., argument_types_);
330
1.23k
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
1.23k
        return AggregateFunctionPtr(result.release());
332
1.23k
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
13
                                                       TArgs&&... args) {
328
13
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
13
                std::forward<TArgs>(args)..., argument_types_);
330
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
13
        return AggregateFunctionPtr(result.release());
332
13
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
13
                                                       TArgs&&... args) {
328
13
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
13
                std::forward<TArgs>(args)..., argument_types_);
330
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
13
        return AggregateFunctionPtr(result.release());
332
13
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
13
                                                       TArgs&&... args) {
328
13
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
13
                std::forward<TArgs>(args)..., argument_types_);
330
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
13
        return AggregateFunctionPtr(result.release());
332
13
    }
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
327
13
                                                       TArgs&&... args) {
328
13
        std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>(
329
13
                std::forward<TArgs>(args)..., argument_types_);
330
13
        CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate);
331
13
        return AggregateFunctionPtr(result.release());
332
13
    }
333
};
334
335
template <template <PrimitiveType> class AggregateFunctionTemplate>
336
struct CurryDirect {
337
    template <PrimitiveType type>
338
    using T = AggregateFunctionTemplate<type>;
339
};
340
template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate>
341
struct CurryDirectWithResultType {
342
    template <PrimitiveType type, PrimitiveType result_type>
343
    using T = AggregateFunctionTemplate<type, result_type>;
344
};
345
template <template <typename> class AggregateFunctionTemplate, template <PrimitiveType> class Data>
346
struct CurryData {
347
    template <PrimitiveType Type>
348
    using T = AggregateFunctionTemplate<Data<Type>>;
349
};
350
template <template <typename> class AggregateFunctionTemplate, template <typename> class Data,
351
          template <PrimitiveType> class Impl>
352
struct CurryDataImpl {
353
    template <PrimitiveType Type>
354
    using T = AggregateFunctionTemplate<Data<Impl<Type>>>;
355
};
356
template <template <PrimitiveType, typename> class AggregateFunctionTemplate,
357
          template <PrimitiveType> class Data>
358
struct CurryDirectAndData {
359
    template <PrimitiveType Type>
360
    using T = AggregateFunctionTemplate<Type, Data<Type>>;
361
};
362
363
template <int define_index, PrimitiveType... AllowedTypes>
364
struct creator_with_type_list_base {
365
    template <typename Class, typename... TArgs>
366
    static AggregateFunctionPtr create_base(const DataTypes& argument_types,
367
                                            const bool result_is_nullable,
368
67.3k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
67.3k
        auto create = [&]<PrimitiveType Ptype>() {
370
66.5k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
66.5k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
66.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
369
1.46k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.46k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.46k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.46k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
50
        auto create = [&]<PrimitiveType Ptype>() {
370
50
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
50
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
50
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
7.58k
        auto create = [&]<PrimitiveType Ptype>() {
370
7.58k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
7.58k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
7.58k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
2.24k
        auto create = [&]<PrimitiveType Ptype>() {
370
2.24k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2.24k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2.24k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
80
        auto create = [&]<PrimitiveType Ptype>() {
370
80
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
80
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
80
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
30
        auto create = [&]<PrimitiveType Ptype>() {
370
30
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
30
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
30
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
323
        auto create = [&]<PrimitiveType Ptype>() {
370
323
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
323
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
323
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
102
        auto create = [&]<PrimitiveType Ptype>() {
370
102
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
102
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
102
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
34
        auto create = [&]<PrimitiveType Ptype>() {
370
34
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
34
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
34
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
1.18k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.18k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.18k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.18k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
427
        auto create = [&]<PrimitiveType Ptype>() {
370
427
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
427
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
427
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
136
        auto create = [&]<PrimitiveType Ptype>() {
370
136
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
136
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
136
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
16
        auto create = [&]<PrimitiveType Ptype>() {
370
16
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
16
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
16
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
715
        auto create = [&]<PrimitiveType Ptype>() {
370
715
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
715
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
715
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
58
        auto create = [&]<PrimitiveType Ptype>() {
370
58
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
58
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
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
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Line
Count
Source
369
13
        auto create = [&]<PrimitiveType Ptype>() {
370
13
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
13
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
13
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
563
        auto create = [&]<PrimitiveType Ptype>() {
370
563
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
563
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
563
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_17EEEDav
Line
Count
Source
369
4
        auto create = [&]<PrimitiveType Ptype>() {
370
4
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
10
        auto create = [&]<PrimitiveType Ptype>() {
370
10
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
10
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
10
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_41EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
36
        auto create = [&]<PrimitiveType Ptype>() {
370
36
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
36
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
36
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
33
        auto create = [&]<PrimitiveType Ptype>() {
370
33
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
33
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
33
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
468
        auto create = [&]<PrimitiveType Ptype>() {
370
468
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
468
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
468
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
33
        auto create = [&]<PrimitiveType Ptype>() {
370
33
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
33
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
33
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
33
        auto create = [&]<PrimitiveType Ptype>() {
370
33
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
33
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
33
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
469
        auto create = [&]<PrimitiveType Ptype>() {
370
469
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
469
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
469
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
33
        auto create = [&]<PrimitiveType Ptype>() {
370
33
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
33
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
33
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
33
        auto create = [&]<PrimitiveType Ptype>() {
370
33
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
33
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
33
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
470
        auto create = [&]<PrimitiveType Ptype>() {
370
470
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
470
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
470
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
35
        auto create = [&]<PrimitiveType Ptype>() {
370
35
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
35
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
35
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
925
        auto create = [&]<PrimitiveType Ptype>() {
370
925
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
925
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
925
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
358
        auto create = [&]<PrimitiveType Ptype>() {
370
358
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
358
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
358
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
921
        auto create = [&]<PrimitiveType Ptype>() {
370
921
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
921
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
921
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
980
        auto create = [&]<PrimitiveType Ptype>() {
370
980
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
980
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
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
369
1.20k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.20k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.20k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.20k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
2.98k
        auto create = [&]<PrimitiveType Ptype>() {
370
2.98k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2.98k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2.98k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
1.09k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.09k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.09k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.09k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
1.46k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.46k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.46k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.46k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
1.89k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.89k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.89k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.89k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
894
        auto create = [&]<PrimitiveType Ptype>() {
370
894
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
894
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
894
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Line
Count
Source
369
30
        auto create = [&]<PrimitiveType Ptype>() {
370
30
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
30
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
30
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
1.23k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.23k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.23k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.23k
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
60
        auto create = [&]<PrimitiveType Ptype>() {
370
60
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
60
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
60
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
36
        auto create = [&]<PrimitiveType Ptype>() {
370
36
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
36
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
36
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
42
        auto create = [&]<PrimitiveType Ptype>() {
370
42
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
42
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
42
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
36
        auto create = [&]<PrimitiveType Ptype>() {
370
36
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
36
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
36
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
36
        auto create = [&]<PrimitiveType Ptype>() {
370
36
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
36
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
36
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
40
        auto create = [&]<PrimitiveType Ptype>() {
370
40
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
40
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
40
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
56
        auto create = [&]<PrimitiveType Ptype>() {
370
56
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
56
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
56
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
50
        auto create = [&]<PrimitiveType Ptype>() {
370
50
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
50
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
50
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
38
        auto create = [&]<PrimitiveType Ptype>() {
370
38
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
38
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
38
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
46
        auto create = [&]<PrimitiveType Ptype>() {
370
46
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
46
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
46
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
38
        auto create = [&]<PrimitiveType Ptype>() {
370
38
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
38
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
38
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
38
        auto create = [&]<PrimitiveType Ptype>() {
370
38
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
38
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
38
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
42
        auto create = [&]<PrimitiveType Ptype>() {
370
42
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
42
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
42
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
69
        auto create = [&]<PrimitiveType Ptype>() {
370
69
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
69
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
69
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
24
        auto create = [&]<PrimitiveType Ptype>() {
370
24
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
24
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
24
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
16
        auto create = [&]<PrimitiveType Ptype>() {
370
16
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
16
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
16
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
16
        auto create = [&]<PrimitiveType Ptype>() {
370
16
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
16
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
16
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
40
        auto create = [&]<PrimitiveType Ptype>() {
370
40
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
40
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
40
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
125
        auto create = [&]<PrimitiveType Ptype>() {
370
125
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
125
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
125
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
4
        auto create = [&]<PrimitiveType Ptype>() {
370
4
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
3
        auto create = [&]<PrimitiveType Ptype>() {
370
3
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
3
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
3
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
434
        auto create = [&]<PrimitiveType Ptype>() {
370
434
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
434
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
434
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
434
        auto create = [&]<PrimitiveType Ptype>() {
370
434
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
434
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
434
        };
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_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
Line
Count
Source
369
60
        auto create = [&]<PrimitiveType Ptype>() {
370
60
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
60
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
60
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
265
        auto create = [&]<PrimitiveType Ptype>() {
370
265
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
265
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
265
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
190
        auto create = [&]<PrimitiveType Ptype>() {
370
190
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
190
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
190
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
11.2k
        auto create = [&]<PrimitiveType Ptype>() {
370
11.2k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
11.2k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
11.2k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
3.83k
        auto create = [&]<PrimitiveType Ptype>() {
370
3.83k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
3.83k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
3.83k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
212
        auto create = [&]<PrimitiveType Ptype>() {
370
212
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
212
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
212
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
66
        auto create = [&]<PrimitiveType Ptype>() {
370
66
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
66
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
66
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
90
        auto create = [&]<PrimitiveType Ptype>() {
370
90
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
90
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
90
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
56
        auto create = [&]<PrimitiveType Ptype>() {
370
56
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
56
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
56
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Line
Count
Source
369
1.96k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.96k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.96k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.96k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
712
        auto create = [&]<PrimitiveType Ptype>() {
370
712
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
712
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
712
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Line
Count
Source
369
26
        auto create = [&]<PrimitiveType Ptype>() {
370
26
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
26
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
26
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
4.41k
        auto create = [&]<PrimitiveType Ptype>() {
370
4.41k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4.41k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4.41k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
4.56k
        auto create = [&]<PrimitiveType Ptype>() {
370
4.56k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4.56k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4.56k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
464
        auto create = [&]<PrimitiveType Ptype>() {
370
464
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
464
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
464
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
31
        auto create = [&]<PrimitiveType Ptype>() {
370
31
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
31
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
31
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
1.76k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.76k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.76k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.76k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
11
        auto create = [&]<PrimitiveType Ptype>() {
370
11
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
11
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
11
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
4
        auto create = [&]<PrimitiveType Ptype>() {
370
4
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
6
        auto create = [&]<PrimitiveType Ptype>() {
370
6
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
6
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
6
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
468
        auto create = [&]<PrimitiveType Ptype>() {
370
468
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
468
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
468
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
4
        auto create = [&]<PrimitiveType Ptype>() {
370
4
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
13
        auto create = [&]<PrimitiveType Ptype>() {
370
13
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
13
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
13
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
3
        auto create = [&]<PrimitiveType Ptype>() {
370
3
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
3
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
3
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
11
        auto create = [&]<PrimitiveType Ptype>() {
370
11
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
11
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
11
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
10
        auto create = [&]<PrimitiveType Ptype>() {
370
10
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
10
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
10
        };
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
436
        auto create = [&]<PrimitiveType Ptype>() {
370
436
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
436
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
436
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
5
        auto create = [&]<PrimitiveType Ptype>() {
370
5
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
5
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
5
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
18
        auto create = [&]<PrimitiveType Ptype>() {
370
18
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
18
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
18
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
43
        auto create = [&]<PrimitiveType Ptype>() {
370
43
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
43
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
43
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
19
        auto create = [&]<PrimitiveType Ptype>() {
370
19
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
19
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
19
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
19
        auto create = [&]<PrimitiveType Ptype>() {
370
19
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
19
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
19
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
Line
Count
Source
369
4
        auto create = [&]<PrimitiveType Ptype>() {
370
4
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
4
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
4
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
457
        auto create = [&]<PrimitiveType Ptype>() {
370
457
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
457
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
457
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
20
        auto create = [&]<PrimitiveType Ptype>() {
370
20
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
20
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
20
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
19
        auto create = [&]<PrimitiveType Ptype>() {
370
19
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
19
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
19
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav
Line
Count
Source
369
39
        auto create = [&]<PrimitiveType Ptype>() {
370
39
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
39
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
39
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav
Line
Count
Source
369
38
        auto create = [&]<PrimitiveType Ptype>() {
370
38
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
38
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
38
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav
Line
Count
Source
369
38
        auto create = [&]<PrimitiveType Ptype>() {
370
38
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
38
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
38
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
3
        auto create = [&]<PrimitiveType Ptype>() {
370
3
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
3
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
3
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Line
Count
Source
369
1
        auto create = [&]<PrimitiveType Ptype>() {
370
1
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav
Line
Count
Source
369
453
        auto create = [&]<PrimitiveType Ptype>() {
370
453
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
453
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
453
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav
Line
Count
Source
369
21
        auto create = [&]<PrimitiveType Ptype>() {
370
21
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
21
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
21
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav
Line
Count
Source
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
468
        auto create = [&]<PrimitiveType Ptype>() {
370
468
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
468
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
468
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
26
        auto create = [&]<PrimitiveType Ptype>() {
370
26
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
26
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
26
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
454
        auto create = [&]<PrimitiveType Ptype>() {
370
454
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
454
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
454
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav
Line
Count
Source
369
450
        auto create = [&]<PrimitiveType Ptype>() {
370
450
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
450
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
450
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
Line
Count
Source
369
7
        auto create = [&]<PrimitiveType Ptype>() {
370
7
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
7
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
7
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav
Line
Count
Source
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
373
67.3k
        AggregateFunctionPtr result = nullptr;
374
67.3k
        auto type = argument_types[define_index]->get_primitive_type();
375
67.3k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
67.3k
            type == PrimitiveType::TYPE_JSONB) {
377
2.76k
            type = PrimitiveType::TYPE_VARCHAR;
378
2.76k
        }
379
380
67.3k
        (
381
873k
                [&] {
382
873k
                    if (type == AllowedTypes) {
383
66.5k
                        result = create.template operator()<AllowedTypes>();
384
66.5k
                    }
385
873k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
1.46k
                        result = create.template operator()<AllowedTypes>();
384
1.46k
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
50
                        result = create.template operator()<AllowedTypes>();
384
50
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
7.58k
                        result = create.template operator()<AllowedTypes>();
384
7.58k
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
2.24k
                        result = create.template operator()<AllowedTypes>();
384
2.24k
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
80
                        result = create.template operator()<AllowedTypes>();
384
80
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
30
                        result = create.template operator()<AllowedTypes>();
384
30
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
323
                        result = create.template operator()<AllowedTypes>();
384
323
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
11.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
102
                        result = create.template operator()<AllowedTypes>();
384
102
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
34
                        result = create.template operator()<AllowedTypes>();
384
34
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
1.18k
                        result = create.template operator()<AllowedTypes>();
384
1.18k
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
1.87k
                [&] {
382
1.87k
                    if (type == AllowedTypes) {
383
427
                        result = create.template operator()<AllowedTypes>();
384
427
                    }
385
1.87k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
136
                        result = create.template operator()<AllowedTypes>();
384
136
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.88k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
16
                        result = create.template operator()<AllowedTypes>();
384
16
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
715
                        result = create.template operator()<AllowedTypes>();
384
715
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
58
                        result = create.template operator()<AllowedTypes>();
384
58
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
13
                        result = create.template operator()<AllowedTypes>();
384
13
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
562
                        result = create.template operator()<AllowedTypes>();
384
562
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
4
                        result = create.template operator()<AllowedTypes>();
384
4
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
10
                        result = create.template operator()<AllowedTypes>();
384
10
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
1.40k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
1.40k
                }(),
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
607
                [&] {
382
607
                    if (type == AllowedTypes) {
383
36
                        result = create.template operator()<AllowedTypes>();
384
36
                    }
385
607
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
607
                [&] {
382
607
                    if (type == AllowedTypes) {
383
33
                        result = create.template operator()<AllowedTypes>();
384
33
                    }
385
607
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
607
                [&] {
382
607
                    if (type == AllowedTypes) {
383
469
                        result = create.template operator()<AllowedTypes>();
384
469
                    }
385
607
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
608
                [&] {
382
608
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
608
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
607
                [&] {
382
607
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
607
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
33
                        result = create.template operator()<AllowedTypes>();
384
33
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
33
                        result = create.template operator()<AllowedTypes>();
384
33
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
470
                        result = create.template operator()<AllowedTypes>();
384
470
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
606
                [&] {
382
606
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
606
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
606
                [&] {
382
606
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
606
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
33
                        result = create.template operator()<AllowedTypes>();
384
33
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
33
                        result = create.template operator()<AllowedTypes>();
384
33
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
470
                        result = create.template operator()<AllowedTypes>();
384
470
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
605
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
603
                [&] {
382
603
                    if (type == AllowedTypes) {
383
35
                        result = create.template operator()<AllowedTypes>();
384
35
                    }
385
603
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2.17k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
2.17k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
924
                        result = create.template operator()<AllowedTypes>();
384
924
                    }
385
2.17k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
357
                        result = create.template operator()<AllowedTypes>();
384
357
                    }
385
2.17k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2.17k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
921
                        result = create.template operator()<AllowedTypes>();
384
921
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
980
                        result = create.template operator()<AllowedTypes>();
384
980
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
1.20k
                        result = create.template operator()<AllowedTypes>();
384
1.20k
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
2.98k
                        result = create.template operator()<AllowedTypes>();
384
2.98k
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
1.09k
                        result = create.template operator()<AllowedTypes>();
384
1.09k
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
12.7k
                [&] {
382
12.7k
                    if (type == AllowedTypes) {
383
1.46k
                        result = create.template operator()<AllowedTypes>();
384
1.46k
                    }
385
12.7k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
1.89k
                        result = create.template operator()<AllowedTypes>();
384
1.89k
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
894
                        result = create.template operator()<AllowedTypes>();
384
894
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
30
                        result = create.template operator()<AllowedTypes>();
384
30
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
1.23k
                        result = create.template operator()<AllowedTypes>();
384
1.23k
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
60
                        result = create.template operator()<AllowedTypes>();
384
60
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
36
                        result = create.template operator()<AllowedTypes>();
384
36
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
42
                        result = create.template operator()<AllowedTypes>();
384
42
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
36
                        result = create.template operator()<AllowedTypes>();
384
36
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
36
                        result = create.template operator()<AllowedTypes>();
384
36
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
40
                        result = create.template operator()<AllowedTypes>();
384
40
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
56
                        result = create.template operator()<AllowedTypes>();
384
56
                    }
385
306
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
50
                        result = create.template operator()<AllowedTypes>();
384
50
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
38
                        result = create.template operator()<AllowedTypes>();
384
38
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
46
                        result = create.template operator()<AllowedTypes>();
384
46
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
38
                        result = create.template operator()<AllowedTypes>();
384
38
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
38
                        result = create.template operator()<AllowedTypes>();
384
38
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
42
                        result = create.template operator()<AllowedTypes>();
384
42
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
69
                        result = create.template operator()<AllowedTypes>();
384
69
                    }
385
321
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
24
                        result = create.template operator()<AllowedTypes>();
384
24
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
16
                        result = create.template operator()<AllowedTypes>();
384
16
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
16
                        result = create.template operator()<AllowedTypes>();
384
16
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
40
                        result = create.template operator()<AllowedTypes>();
384
40
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
125
                        result = create.template operator()<AllowedTypes>();
384
125
                    }
385
221
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
4
                        result = create.template operator()<AllowedTypes>();
384
4
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
12
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
440
                [&] {
382
440
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
440
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
440
                [&] {
382
440
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
440
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
3
                        result = create.template operator()<AllowedTypes>();
384
3
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
439
                [&] {
382
439
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
439
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
440
                [&] {
382
440
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
440
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
440
                [&] {
382
440
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
440
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
439
                [&] {
382
439
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
439
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
439
                [&] {
382
439
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
439
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
436
                [&] {
382
436
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
436
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
437
                [&] {
382
437
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
437
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
439
                [&] {
382
439
                    if (type == AllowedTypes) {
383
433
                        result = create.template operator()<AllowedTypes>();
384
433
                    }
385
439
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
436
                [&] {
382
436
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
436
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
431
                [&] {
382
431
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
431
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
431
                [&] {
382
431
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
431
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
432
                [&] {
382
432
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
432
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
434
                [&] {
382
434
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
434
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
436
                [&] {
382
436
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
436
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
437
                [&] {
382
437
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
437
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
439
                [&] {
382
439
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
439
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
438
                [&] {
382
438
                    if (type == AllowedTypes) {
383
435
                        result = create.template operator()<AllowedTypes>();
384
435
                    }
385
438
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
434
                [&] {
382
434
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
434
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
435
                [&] {
382
435
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
435
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
436
                [&] {
382
436
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
436
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
60
                        result = create.template operator()<AllowedTypes>();
384
60
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
265
                        result = create.template operator()<AllowedTypes>();
384
265
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
190
                        result = create.template operator()<AllowedTypes>();
384
190
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
11.2k
                        result = create.template operator()<AllowedTypes>();
384
11.2k
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
3.83k
                        result = create.template operator()<AllowedTypes>();
384
3.83k
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
212
                        result = create.template operator()<AllowedTypes>();
384
212
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
66
                        result = create.template operator()<AllowedTypes>();
384
66
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
90
                        result = create.template operator()<AllowedTypes>();
384
90
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
56
                        result = create.template operator()<AllowedTypes>();
384
56
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
1.96k
                        result = create.template operator()<AllowedTypes>();
384
1.96k
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
712
                        result = create.template operator()<AllowedTypes>();
384
712
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
26
                        result = create.template operator()<AllowedTypes>();
384
26
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
4.41k
                        result = create.template operator()<AllowedTypes>();
384
4.41k
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
4.56k
                        result = create.template operator()<AllowedTypes>();
384
4.56k
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
464
                        result = create.template operator()<AllowedTypes>();
384
464
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
28.1k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
28.2k
                [&] {
382
28.2k
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
28.2k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
1.82k
                [&] {
382
1.82k
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
1.82k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
1.83k
                [&] {
382
1.83k
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
1.83k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
1.83k
                [&] {
382
1.83k
                    if (type == AllowedTypes) {
383
31
                        result = create.template operator()<AllowedTypes>();
384
31
                    }
385
1.83k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
1.83k
                [&] {
382
1.83k
                    if (type == AllowedTypes) {
383
1.76k
                        result = create.template operator()<AllowedTypes>();
384
1.76k
                    }
385
1.83k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
1.82k
                [&] {
382
1.82k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.82k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
1.82k
                [&] {
382
1.82k
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
1.82k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
1.82k
                [&] {
382
1.82k
                    if (type == AllowedTypes) {
383
11
                        result = create.template operator()<AllowedTypes>();
384
11
                    }
385
1.82k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
508
                [&] {
382
508
                    if (type == AllowedTypes) {
383
4
                        result = create.template operator()<AllowedTypes>();
384
4
                    }
385
508
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
508
                [&] {
382
508
                    if (type == AllowedTypes) {
383
6
                        result = create.template operator()<AllowedTypes>();
384
6
                    }
385
508
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
508
                [&] {
382
508
                    if (type == AllowedTypes) {
383
468
                        result = create.template operator()<AllowedTypes>();
384
468
                    }
385
508
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
509
                [&] {
382
509
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
509
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
509
                [&] {
382
509
                    if (type == AllowedTypes) {
383
4
                        result = create.template operator()<AllowedTypes>();
384
4
                    }
385
509
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
509
                [&] {
382
509
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
509
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
509
                [&] {
382
509
                    if (type == AllowedTypes) {
383
13
                        result = create.template operator()<AllowedTypes>();
384
13
                    }
385
509
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
3
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
3
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
3
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
3
                        result = create.template operator()<AllowedTypes>();
384
3
                    }
385
3
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
3
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
11
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
11
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
11
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
11
                        result = create.template operator()<AllowedTypes>();
384
11
                    }
385
11
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
11
                }(),
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
449
                [&] {
382
449
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
449
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
449
                [&] {
382
449
                    if (type == AllowedTypes) {
383
10
                        result = create.template operator()<AllowedTypes>();
384
10
                    }
385
449
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
450
                [&] {
382
450
                    if (type == AllowedTypes) {
383
437
                        result = create.template operator()<AllowedTypes>();
384
437
                    }
385
450
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
448
                [&] {
382
448
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
448
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
448
                [&] {
382
448
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
448
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
2
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
5
                        result = create.template operator()<AllowedTypes>();
384
5
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
18
                        result = create.template operator()<AllowedTypes>();
384
18
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
43
                        result = create.template operator()<AllowedTypes>();
384
43
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
19
                        result = create.template operator()<AllowedTypes>();
384
19
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
19
                        result = create.template operator()<AllowedTypes>();
384
19
                    }
385
168
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
4
                        result = create.template operator()<AllowedTypes>();
384
4
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
457
                        result = create.template operator()<AllowedTypes>();
384
457
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
717
                [&] {
382
717
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
717
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
20
                        result = create.template operator()<AllowedTypes>();
384
20
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
19
                        result = create.template operator()<AllowedTypes>();
384
19
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
716
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
0
                        result = create.template operator()<AllowedTypes>();
384
0
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
714
                [&] {
382
714
                    if (type == AllowedTypes) {
383
39
                        result = create.template operator()<AllowedTypes>();
384
39
                    }
385
714
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
715
                [&] {
382
715
                    if (type == AllowedTypes) {
383
38
                        result = create.template operator()<AllowedTypes>();
384
38
                    }
385
715
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
717
                [&] {
382
717
                    if (type == AllowedTypes) {
383
38
                        result = create.template operator()<AllowedTypes>();
384
38
                    }
385
717
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
3
                        result = create.template operator()<AllowedTypes>();
384
3
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
1
                        result = create.template operator()<AllowedTypes>();
384
1
                    }
385
13
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv
Line
Count
Source
381
587
                [&] {
382
587
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
587
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv
Line
Count
Source
381
588
                [&] {
382
588
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
588
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
453
                        result = create.template operator()<AllowedTypes>();
384
453
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv
Line
Count
Source
381
588
                [&] {
382
588
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
588
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv
Line
Count
Source
381
588
                [&] {
382
588
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
588
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
21
                        result = create.template operator()<AllowedTypes>();
384
21
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
381
587
                [&] {
382
587
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
587
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
586
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
468
                [&] {
382
468
                    if (type == AllowedTypes) {
383
468
                        result = create.template operator()<AllowedTypes>();
384
468
                    }
385
468
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
26
                [&] {
382
26
                    if (type == AllowedTypes) {
383
26
                        result = create.template operator()<AllowedTypes>();
384
26
                    }
385
26
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
454
                [&] {
382
454
                    if (type == AllowedTypes) {
383
454
                        result = create.template operator()<AllowedTypes>();
384
454
                    }
385
454
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
450
                [&] {
382
450
                    if (type == AllowedTypes) {
383
450
                        result = create.template operator()<AllowedTypes>();
384
450
                    }
385
450
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
7
                [&] {
382
7
                    if (type == AllowedTypes) {
383
7
                        result = create.template operator()<AllowedTypes>();
384
7
                    }
385
7
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
381
8
                [&] {
382
8
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
8
                }(),
386
67.3k
                ...);
387
388
67.3k
        return result;
389
67.3k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
11.7k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
11.7k
        auto create = [&]<PrimitiveType Ptype>() {
370
11.7k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
11.7k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
11.7k
        };
373
11.7k
        AggregateFunctionPtr result = nullptr;
374
11.7k
        auto type = argument_types[define_index]->get_primitive_type();
375
11.7k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
11.7k
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
11.7k
        (
381
11.7k
                [&] {
382
11.7k
                    if (type == AllowedTypes) {
383
11.7k
                        result = create.template operator()<AllowedTypes>();
384
11.7k
                    }
385
11.7k
                }(),
386
11.7k
                ...);
387
388
11.7k
        return result;
389
11.7k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
1.88k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
1.88k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.88k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.88k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.88k
        };
373
1.88k
        AggregateFunctionPtr result = nullptr;
374
1.88k
        auto type = argument_types[define_index]->get_primitive_type();
375
1.88k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
1.88k
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
1.88k
        (
381
1.88k
                [&] {
382
1.88k
                    if (type == AllowedTypes) {
383
1.88k
                        result = create.template operator()<AllowedTypes>();
384
1.88k
                    }
385
1.88k
                }(),
386
1.88k
                ...);
387
388
1.88k
        return result;
389
1.88k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
1.40k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
1.40k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.40k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.40k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.40k
        };
373
1.40k
        AggregateFunctionPtr result = nullptr;
374
1.40k
        auto type = argument_types[define_index]->get_primitive_type();
375
1.40k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
1.40k
            type == PrimitiveType::TYPE_JSONB) {
377
530
            type = PrimitiveType::TYPE_VARCHAR;
378
530
        }
379
380
1.40k
        (
381
1.40k
                [&] {
382
1.40k
                    if (type == AllowedTypes) {
383
1.40k
                        result = create.template operator()<AllowedTypes>();
384
1.40k
                    }
385
1.40k
                }(),
386
1.40k
                ...);
387
388
1.40k
        return result;
389
1.40k
    }
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
606
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
606
        auto create = [&]<PrimitiveType Ptype>() {
370
606
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
606
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
606
        };
373
606
        AggregateFunctionPtr result = nullptr;
374
606
        auto type = argument_types[define_index]->get_primitive_type();
375
608
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
608
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
606
        (
381
606
                [&] {
382
606
                    if (type == AllowedTypes) {
383
606
                        result = create.template operator()<AllowedTypes>();
384
606
                    }
385
606
                }(),
386
606
                ...);
387
388
606
        return result;
389
606
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
605
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
605
        auto create = [&]<PrimitiveType Ptype>() {
370
605
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
605
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
605
        };
373
605
        AggregateFunctionPtr result = nullptr;
374
605
        auto type = argument_types[define_index]->get_primitive_type();
375
605
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
605
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
605
        (
381
605
                [&] {
382
605
                    if (type == AllowedTypes) {
383
605
                        result = create.template operator()<AllowedTypes>();
384
605
                    }
385
605
                }(),
386
605
                ...);
387
388
605
        return result;
389
605
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
606
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
606
        auto create = [&]<PrimitiveType Ptype>() {
370
606
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
606
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
606
        };
373
606
        AggregateFunctionPtr result = nullptr;
374
606
        auto type = argument_types[define_index]->get_primitive_type();
375
606
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
606
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
606
        (
381
606
                [&] {
382
606
                    if (type == AllowedTypes) {
383
606
                        result = create.template operator()<AllowedTypes>();
384
606
                    }
385
606
                }(),
386
606
                ...);
387
388
606
        return result;
389
606
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
2.17k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
2.17k
        auto create = [&]<PrimitiveType Ptype>() {
370
2.17k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2.17k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2.17k
        };
373
2.17k
        AggregateFunctionPtr result = nullptr;
374
2.17k
        auto type = argument_types[define_index]->get_primitive_type();
375
2.17k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
2.17k
            type == PrimitiveType::TYPE_JSONB) {
377
402
            type = PrimitiveType::TYPE_VARCHAR;
378
402
        }
379
380
2.17k
        (
381
2.17k
                [&] {
382
2.17k
                    if (type == AllowedTypes) {
383
2.17k
                        result = create.template operator()<AllowedTypes>();
384
2.17k
                    }
385
2.17k
                }(),
386
2.17k
                ...);
387
388
2.17k
        return result;
389
2.17k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
12.6k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
12.6k
        auto create = [&]<PrimitiveType Ptype>() {
370
12.6k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12.6k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12.6k
        };
373
12.6k
        AggregateFunctionPtr result = nullptr;
374
12.6k
        auto type = argument_types[define_index]->get_primitive_type();
375
12.7k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
12.7k
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
12.6k
        (
381
12.6k
                [&] {
382
12.6k
                    if (type == AllowedTypes) {
383
12.6k
                        result = create.template operator()<AllowedTypes>();
384
12.6k
                    }
385
12.6k
                }(),
386
12.6k
                ...);
387
388
12.6k
        return result;
389
12.6k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
306
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
306
        auto create = [&]<PrimitiveType Ptype>() {
370
306
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
306
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
306
        };
373
306
        AggregateFunctionPtr result = nullptr;
374
306
        auto type = argument_types[define_index]->get_primitive_type();
375
306
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
306
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
306
        (
381
306
                [&] {
382
306
                    if (type == AllowedTypes) {
383
306
                        result = create.template operator()<AllowedTypes>();
384
306
                    }
385
306
                }(),
386
306
                ...);
387
388
306
        return result;
389
306
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
321
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
321
        auto create = [&]<PrimitiveType Ptype>() {
370
321
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
321
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
321
        };
373
321
        AggregateFunctionPtr result = nullptr;
374
321
        auto type = argument_types[define_index]->get_primitive_type();
375
321
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
321
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
321
        (
381
321
                [&] {
382
321
                    if (type == AllowedTypes) {
383
321
                        result = create.template operator()<AllowedTypes>();
384
321
                    }
385
321
                }(),
386
321
                ...);
387
388
321
        return result;
389
321
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
221
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
221
        auto create = [&]<PrimitiveType Ptype>() {
370
221
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
221
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
221
        };
373
221
        AggregateFunctionPtr result = nullptr;
374
221
        auto type = argument_types[define_index]->get_primitive_type();
375
221
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
221
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
221
        (
381
221
                [&] {
382
221
                    if (type == AllowedTypes) {
383
221
                        result = create.template operator()<AllowedTypes>();
384
221
                    }
385
221
                }(),
386
221
                ...);
387
388
221
        return result;
389
221
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
12
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
12
        auto create = [&]<PrimitiveType Ptype>() {
370
12
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
12
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
12
        };
373
12
        AggregateFunctionPtr result = nullptr;
374
12
        auto type = argument_types[define_index]->get_primitive_type();
375
12
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
12
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
12
        (
381
12
                [&] {
382
12
                    if (type == AllowedTypes) {
383
12
                        result = create.template operator()<AllowedTypes>();
384
12
                    }
385
12
                }(),
386
12
                ...);
387
388
12
        return result;
389
12
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
442
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
442
        auto create = [&]<PrimitiveType Ptype>() {
370
442
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
442
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
442
        };
373
442
        AggregateFunctionPtr result = nullptr;
374
442
        auto type = argument_types[define_index]->get_primitive_type();
375
442
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
442
            type == PrimitiveType::TYPE_JSONB) {
377
270
            type = PrimitiveType::TYPE_VARCHAR;
378
270
        }
379
380
442
        (
381
442
                [&] {
382
442
                    if (type == AllowedTypes) {
383
442
                        result = create.template operator()<AllowedTypes>();
384
442
                    }
385
442
                }(),
386
442
                ...);
387
388
442
        return result;
389
442
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
2
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
373
2
        AggregateFunctionPtr result = nullptr;
374
2
        auto type = argument_types[define_index]->get_primitive_type();
375
2
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
2
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
2
        (
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
2
                }(),
386
2
                ...);
387
388
2
        return result;
389
2
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
433
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
433
        auto create = [&]<PrimitiveType Ptype>() {
370
433
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
433
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
433
        };
373
433
        AggregateFunctionPtr result = nullptr;
374
433
        auto type = argument_types[define_index]->get_primitive_type();
375
433
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
433
            type == PrimitiveType::TYPE_JSONB) {
377
272
            type = PrimitiveType::TYPE_VARCHAR;
378
272
        }
379
380
433
        (
381
433
                [&] {
382
433
                    if (type == AllowedTypes) {
383
433
                        result = create.template operator()<AllowedTypes>();
384
433
                    }
385
433
                }(),
386
433
                ...);
387
388
433
        return result;
389
433
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
28.1k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
28.1k
        auto create = [&]<PrimitiveType Ptype>() {
370
28.1k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
28.1k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
28.1k
        };
373
28.1k
        AggregateFunctionPtr result = nullptr;
374
28.1k
        auto type = argument_types[define_index]->get_primitive_type();
375
28.1k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
28.1k
            type == PrimitiveType::TYPE_JSONB) {
377
1.22k
            type = PrimitiveType::TYPE_VARCHAR;
378
1.22k
        }
379
380
28.1k
        (
381
28.1k
                [&] {
382
28.1k
                    if (type == AllowedTypes) {
383
28.1k
                        result = create.template operator()<AllowedTypes>();
384
28.1k
                    }
385
28.1k
                }(),
386
28.1k
                ...);
387
388
28.1k
        return result;
389
28.1k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
1.83k
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
1.83k
        auto create = [&]<PrimitiveType Ptype>() {
370
1.83k
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
1.83k
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
1.83k
        };
373
1.83k
        AggregateFunctionPtr result = nullptr;
374
1.83k
        auto type = argument_types[define_index]->get_primitive_type();
375
1.83k
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
1.83k
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
1.83k
        (
381
1.83k
                [&] {
382
1.83k
                    if (type == AllowedTypes) {
383
1.83k
                        result = create.template operator()<AllowedTypes>();
384
1.83k
                    }
385
1.83k
                }(),
386
1.83k
                ...);
387
388
1.83k
        return result;
389
1.83k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
508
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
508
        auto create = [&]<PrimitiveType Ptype>() {
370
508
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
508
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
508
        };
373
508
        AggregateFunctionPtr result = nullptr;
374
508
        auto type = argument_types[define_index]->get_primitive_type();
375
508
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
508
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
508
        (
381
508
                [&] {
382
508
                    if (type == AllowedTypes) {
383
508
                        result = create.template operator()<AllowedTypes>();
384
508
                    }
385
508
                }(),
386
508
                ...);
387
388
508
        return result;
389
508
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
3
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
3
        auto create = [&]<PrimitiveType Ptype>() {
370
3
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
3
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
3
        };
373
3
        AggregateFunctionPtr result = nullptr;
374
3
        auto type = argument_types[define_index]->get_primitive_type();
375
3
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
3
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
3
        (
381
3
                [&] {
382
3
                    if (type == AllowedTypes) {
383
3
                        result = create.template operator()<AllowedTypes>();
384
3
                    }
385
3
                }(),
386
3
                ...);
387
388
3
        return result;
389
3
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
11
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
11
        auto create = [&]<PrimitiveType Ptype>() {
370
11
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
11
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
11
        };
373
11
        AggregateFunctionPtr result = nullptr;
374
11
        auto type = argument_types[define_index]->get_primitive_type();
375
11
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
11
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
11
        (
381
11
                [&] {
382
11
                    if (type == AllowedTypes) {
383
11
                        result = create.template operator()<AllowedTypes>();
384
11
                    }
385
11
                }(),
386
11
                ...);
387
388
11
        return result;
389
11
    }
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
452
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
452
        auto create = [&]<PrimitiveType Ptype>() {
370
452
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
452
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
452
        };
373
452
        AggregateFunctionPtr result = nullptr;
374
452
        auto type = argument_types[define_index]->get_primitive_type();
375
452
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
452
            type == PrimitiveType::TYPE_JSONB) {
377
2
            type = PrimitiveType::TYPE_VARCHAR;
378
2
        }
379
380
452
        (
381
452
                [&] {
382
452
                    if (type == AllowedTypes) {
383
452
                        result = create.template operator()<AllowedTypes>();
384
452
                    }
385
452
                }(),
386
452
                ...);
387
388
452
        return result;
389
452
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
2
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
373
2
        AggregateFunctionPtr result = nullptr;
374
2
        auto type = argument_types[define_index]->get_primitive_type();
375
2
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
2
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
2
        (
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
2
                }(),
386
2
                ...);
387
388
2
        return result;
389
2
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
2
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
2
        auto create = [&]<PrimitiveType Ptype>() {
370
2
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
2
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
2
        };
373
2
        AggregateFunctionPtr result = nullptr;
374
2
        auto type = argument_types[define_index]->get_primitive_type();
375
2
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
2
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
2
        (
381
2
                [&] {
382
2
                    if (type == AllowedTypes) {
383
2
                        result = create.template operator()<AllowedTypes>();
384
2
                    }
385
2
                }(),
386
2
                ...);
387
388
2
        return result;
389
2
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
168
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
168
        auto create = [&]<PrimitiveType Ptype>() {
370
168
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
168
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
168
        };
373
168
        AggregateFunctionPtr result = nullptr;
374
168
        auto type = argument_types[define_index]->get_primitive_type();
375
168
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
168
            type == PrimitiveType::TYPE_JSONB) {
377
23
            type = PrimitiveType::TYPE_VARCHAR;
378
23
        }
379
380
168
        (
381
168
                [&] {
382
168
                    if (type == AllowedTypes) {
383
168
                        result = create.template operator()<AllowedTypes>();
384
168
                    }
385
168
                }(),
386
168
                ...);
387
388
168
        return result;
389
168
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
716
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
716
        auto create = [&]<PrimitiveType Ptype>() {
370
716
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
716
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
716
        };
373
716
        AggregateFunctionPtr result = nullptr;
374
716
        auto type = argument_types[define_index]->get_primitive_type();
375
716
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
716
            type == PrimitiveType::TYPE_JSONB) {
377
39
            type = PrimitiveType::TYPE_VARCHAR;
378
39
        }
379
380
716
        (
381
716
                [&] {
382
716
                    if (type == AllowedTypes) {
383
716
                        result = create.template operator()<AllowedTypes>();
384
716
                    }
385
716
                }(),
386
716
                ...);
387
388
716
        return result;
389
716
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
13
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
13
        auto create = [&]<PrimitiveType Ptype>() {
370
13
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
13
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
13
        };
373
13
        AggregateFunctionPtr result = nullptr;
374
13
        auto type = argument_types[define_index]->get_primitive_type();
375
13
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
13
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
13
        (
381
13
                [&] {
382
13
                    if (type == AllowedTypes) {
383
13
                        result = create.template operator()<AllowedTypes>();
384
13
                    }
385
13
                }(),
386
13
                ...);
387
388
13
        return result;
389
13
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
586
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
586
        auto create = [&]<PrimitiveType Ptype>() {
370
586
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
586
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
586
        };
373
586
        AggregateFunctionPtr result = nullptr;
374
586
        auto type = argument_types[define_index]->get_primitive_type();
375
587
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
587
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
586
        (
381
586
                [&] {
382
586
                    if (type == AllowedTypes) {
383
586
                        result = create.template operator()<AllowedTypes>();
384
586
                    }
385
586
                }(),
386
586
                ...);
387
388
586
        return result;
389
586
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
468
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
468
        auto create = [&]<PrimitiveType Ptype>() {
370
468
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
468
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
468
        };
373
468
        AggregateFunctionPtr result = nullptr;
374
468
        auto type = argument_types[define_index]->get_primitive_type();
375
468
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
468
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
468
        (
381
468
                [&] {
382
468
                    if (type == AllowedTypes) {
383
468
                        result = create.template operator()<AllowedTypes>();
384
468
                    }
385
468
                }(),
386
468
                ...);
387
388
468
        return result;
389
468
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
26
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
26
        auto create = [&]<PrimitiveType Ptype>() {
370
26
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
26
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
26
        };
373
26
        AggregateFunctionPtr result = nullptr;
374
26
        auto type = argument_types[define_index]->get_primitive_type();
375
26
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
26
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
26
        (
381
26
                [&] {
382
26
                    if (type == AllowedTypes) {
383
26
                        result = create.template operator()<AllowedTypes>();
384
26
                    }
385
26
                }(),
386
26
                ...);
387
388
26
        return result;
389
26
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
455
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
455
        auto create = [&]<PrimitiveType Ptype>() {
370
455
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
455
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
455
        };
373
455
        AggregateFunctionPtr result = nullptr;
374
455
        auto type = argument_types[define_index]->get_primitive_type();
375
455
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
455
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
455
        (
381
455
                [&] {
382
455
                    if (type == AllowedTypes) {
383
455
                        result = create.template operator()<AllowedTypes>();
384
455
                    }
385
455
                }(),
386
455
                ...);
387
388
455
        return result;
389
455
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
451
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
451
        auto create = [&]<PrimitiveType Ptype>() {
370
451
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
451
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
451
        };
373
451
        AggregateFunctionPtr result = nullptr;
374
451
        auto type = argument_types[define_index]->get_primitive_type();
375
451
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
451
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
451
        (
381
451
                [&] {
382
451
                    if (type == AllowedTypes) {
383
451
                        result = create.template operator()<AllowedTypes>();
384
451
                    }
385
451
                }(),
386
451
                ...);
387
388
451
        return result;
389
451
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
7
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
7
        auto create = [&]<PrimitiveType Ptype>() {
370
7
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
7
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
7
        };
373
7
        AggregateFunctionPtr result = nullptr;
374
7
        auto type = argument_types[define_index]->get_primitive_type();
375
7
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
7
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
7
        (
381
7
                [&] {
382
7
                    if (type == AllowedTypes) {
383
7
                        result = create.template operator()<AllowedTypes>();
384
7
                    }
385
7
                }(),
386
7
                ...);
387
388
7
        return result;
389
7
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
368
8
                                            const AggregateFunctionAttr& attr, TArgs&&... args) {
369
8
        auto create = [&]<PrimitiveType Ptype>() {
370
8
            return creator_without_type::create<typename Class::template T<Ptype>>(
371
8
                    argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
372
8
        };
373
8
        AggregateFunctionPtr result = nullptr;
374
8
        auto type = argument_types[define_index]->get_primitive_type();
375
8
        if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING ||
376
8
            type == PrimitiveType::TYPE_JSONB) {
377
0
            type = PrimitiveType::TYPE_VARCHAR;
378
0
        }
379
380
8
        (
381
8
                [&] {
382
8
                    if (type == AllowedTypes) {
383
8
                        result = create.template operator()<AllowedTypes>();
384
8
                    }
385
8
                }(),
386
8
                ...);
387
388
8
        return result;
389
8
    }
390
391
    template <typename Class, typename... TArgs>
392
    static AggregateFunctionPtr create_base_with_result_type(const std::string& name,
393
                                                             const DataTypes& argument_types,
394
                                                             const DataTypePtr& result_type,
395
                                                             const bool result_is_nullable,
396
                                                             const AggregateFunctionAttr& attr,
397
3.17k
                                                             TArgs&&... args) {
398
3.17k
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
0
                          ResultType < InputType) {
401
0
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
0
                                       "agg function {} error, arg type {}, result type {}", name,
403
0
                                       argument_types[define_index]->get_name(),
404
0
                                       result_type->get_name());
405
0
                return nullptr;
406
3.16k
            } else {
407
3.16k
                return creator_without_type::create<
408
3.16k
                        typename Class::template T<InputType, ResultType>>(
409
3.16k
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
3.16k
            }
411
3.16k
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav
Line
Count
Source
398
82
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
82
            } else {
407
82
                return creator_without_type::create<
408
82
                        typename Class::template T<InputType, ResultType>>(
409
82
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
82
            }
411
82
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav
Line
Count
Source
398
1.18k
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
1.18k
            } else {
407
1.18k
                return creator_without_type::create<
408
1.18k
                        typename Class::template T<InputType, ResultType>>(
409
1.18k
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
1.18k
            }
411
1.18k
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav
Line
Count
Source
398
18
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
18
            } else {
407
18
                return creator_without_type::create<
408
18
                        typename Class::template T<InputType, ResultType>>(
409
18
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
18
            }
411
18
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav
Line
Count
Source
398
857
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
857
            } else {
407
857
                return creator_without_type::create<
408
857
                        typename Class::template T<InputType, ResultType>>(
409
857
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
857
            }
411
857
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav
Line
Count
Source
398
9
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
9
            } else {
407
9
                return creator_without_type::create<
408
9
                        typename Class::template T<InputType, ResultType>>(
409
9
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
9
            }
411
9
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav
Line
Count
Source
398
111
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
111
            } else {
407
111
                return creator_without_type::create<
408
111
                        typename Class::template T<InputType, ResultType>>(
409
111
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
111
            }
411
111
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav
Line
Count
Source
398
45
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
45
            } else {
407
45
                return creator_without_type::create<
408
45
                        typename Class::template T<InputType, ResultType>>(
409
45
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
45
            }
411
45
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav
Line
Count
Source
398
2
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
2
            } else {
407
2
                return creator_without_type::create<
408
2
                        typename Class::template T<InputType, ResultType>>(
409
2
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
2
            }
411
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav
Line
Count
Source
398
500
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
500
            } else {
407
500
                return creator_without_type::create<
408
500
                        typename Class::template T<InputType, ResultType>>(
409
500
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
500
            }
411
500
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav
Line
Count
Source
398
2
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
2
            } else {
407
2
                return creator_without_type::create<
408
2
                        typename Class::template T<InputType, ResultType>>(
409
2
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
2
            }
411
2
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav
Line
Count
Source
398
81
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
81
            } else {
407
81
                return creator_without_type::create<
408
81
                        typename Class::template T<InputType, ResultType>>(
409
81
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
81
            }
411
81
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav
Line
Count
Source
398
6
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
6
            } else {
407
6
                return creator_without_type::create<
408
6
                        typename Class::template T<InputType, ResultType>>(
409
6
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
6
            }
411
6
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav
Line
Count
Source
398
82
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
82
            } else {
407
82
                return creator_without_type::create<
408
82
                        typename Class::template T<InputType, ResultType>>(
409
82
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
82
            }
411
82
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav
Line
Count
Source
398
18
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
18
            } else {
407
18
                return creator_without_type::create<
408
18
                        typename Class::template T<InputType, ResultType>>(
409
18
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
18
            }
411
18
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav
Line
Count
Source
398
45
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
45
            } else {
407
45
                return creator_without_type::create<
408
45
                        typename Class::template T<InputType, ResultType>>(
409
45
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
45
            }
411
45
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav
Line
Count
Source
398
4
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
4
            } else {
407
4
                return creator_without_type::create<
408
4
                        typename Class::template T<InputType, ResultType>>(
409
4
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
4
            }
411
4
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav
Line
Count
Source
398
6
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
6
            } else {
407
6
                return creator_without_type::create<
408
6
                        typename Class::template T<InputType, ResultType>>(
409
6
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
6
            }
411
6
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav
Line
Count
Source
398
1
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
1
            } else {
407
1
                return creator_without_type::create<
408
1
                        typename Class::template T<InputType, ResultType>>(
409
1
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
1
            }
411
1
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav
Line
Count
Source
398
7
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
7
            } else {
407
7
                return creator_without_type::create<
408
7
                        typename Class::template T<InputType, ResultType>>(
409
7
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
7
            }
411
7
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav
Line
Count
Source
398
12
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
12
            } else {
407
12
                return creator_without_type::create<
408
12
                        typename Class::template T<InputType, ResultType>>(
409
12
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
12
            }
411
12
        };
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav
Line
Count
Source
398
18
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
18
            } else {
407
18
                return creator_without_type::create<
408
18
                        typename Class::template T<InputType, ResultType>>(
409
18
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
18
            }
411
18
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav
Line
Count
Source
398
14
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
14
            } else {
407
14
                return creator_without_type::create<
408
14
                        typename Class::template T<InputType, ResultType>>(
409
14
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
14
            }
411
14
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav
Line
Count
Source
398
22
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
22
            } else {
407
22
                return creator_without_type::create<
408
22
                        typename Class::template T<InputType, ResultType>>(
409
22
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
22
            }
411
22
        };
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav
Line
Count
Source
398
47
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
                          ResultType < InputType) {
401
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
                                       "agg function {} error, arg type {}, result type {}", name,
403
                                       argument_types[define_index]->get_name(),
404
                                       result_type->get_name());
405
                return nullptr;
406
47
            } else {
407
47
                return creator_without_type::create<
408
47
                        typename Class::template T<InputType, ResultType>>(
409
47
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
47
            }
411
47
        };
412
3.17k
        AggregateFunctionPtr result = nullptr;
413
3.17k
        auto type = argument_types[define_index]->get_primitive_type();
414
415
3.17k
        (
416
12.6k
                [&] {
417
12.6k
                    if (type == AllowedTypes) {
418
3.17k
                        static_assert(is_decimalv3(AllowedTypes));
419
3.17k
                        auto call = [&](const auto& type) -> bool {
420
3.17k
                            using DispatchType = std::decay_t<decltype(type)>;
421
3.17k
                            result =
422
3.17k
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
3.17k
                            return true;
424
3.17k
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
82
                        auto call = [&](const auto& type) -> bool {
420
82
                            using DispatchType = std::decay_t<decltype(type)>;
421
82
                            result =
422
82
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
82
                            return true;
424
82
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
1.18k
                        auto call = [&](const auto& type) -> bool {
420
1.18k
                            using DispatchType = std::decay_t<decltype(type)>;
421
1.18k
                            result =
422
1.18k
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
1.18k
                            return true;
424
1.18k
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
18
                        auto call = [&](const auto& type) -> bool {
420
18
                            using DispatchType = std::decay_t<decltype(type)>;
421
18
                            result =
422
18
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
18
                            return true;
424
18
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
857
                        auto call = [&](const auto& type) -> bool {
420
857
                            using DispatchType = std::decay_t<decltype(type)>;
421
857
                            result =
422
857
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
857
                            return true;
424
857
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
9
                        auto call = [&](const auto& type) -> bool {
420
9
                            using DispatchType = std::decay_t<decltype(type)>;
421
9
                            result =
422
9
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
9
                            return true;
424
9
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
111
                        auto call = [&](const auto& type) -> bool {
420
111
                            using DispatchType = std::decay_t<decltype(type)>;
421
111
                            result =
422
111
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
111
                            return true;
424
111
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
45
                        auto call = [&](const auto& type) -> bool {
420
45
                            using DispatchType = std::decay_t<decltype(type)>;
421
45
                            result =
422
45
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
45
                            return true;
424
45
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
2
                        auto call = [&](const auto& type) -> bool {
420
2
                            using DispatchType = std::decay_t<decltype(type)>;
421
2
                            result =
422
2
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
2
                            return true;
424
2
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
500
                        auto call = [&](const auto& type) -> bool {
420
500
                            using DispatchType = std::decay_t<decltype(type)>;
421
500
                            result =
422
500
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
500
                            return true;
424
500
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
2
                        auto call = [&](const auto& type) -> bool {
420
2
                            using DispatchType = std::decay_t<decltype(type)>;
421
2
                            result =
422
2
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
2
                            return true;
424
2
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
Line
Count
Source
419
81
                        auto call = [&](const auto& type) -> bool {
420
81
                            using DispatchType = std::decay_t<decltype(type)>;
421
81
                            result =
422
81
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
81
                            return true;
424
81
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
6
                        auto call = [&](const auto& type) -> bool {
420
6
                            using DispatchType = std::decay_t<decltype(type)>;
421
6
                            result =
422
6
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
6
                            return true;
424
6
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_
Line
Count
Source
419
83
                        auto call = [&](const auto& type) -> bool {
420
83
                            using DispatchType = std::decay_t<decltype(type)>;
421
83
                            result =
422
83
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
83
                            return true;
424
83
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Line
Count
Source
419
18
                        auto call = [&](const auto& type) -> bool {
420
18
                            using DispatchType = std::decay_t<decltype(type)>;
421
18
                            result =
422
18
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
18
                            return true;
424
18
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
45
                        auto call = [&](const auto& type) -> bool {
420
45
                            using DispatchType = std::decay_t<decltype(type)>;
421
45
                            result =
422
45
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
45
                            return true;
424
45
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Line
Count
Source
419
4
                        auto call = [&](const auto& type) -> bool {
420
4
                            using DispatchType = std::decay_t<decltype(type)>;
421
4
                            result =
422
4
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
4
                            return true;
424
4
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
6
                        auto call = [&](const auto& type) -> bool {
420
6
                            using DispatchType = std::decay_t<decltype(type)>;
421
6
                            result =
422
6
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
6
                            return true;
424
6
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Line
Count
Source
419
1
                        auto call = [&](const auto& type) -> bool {
420
1
                            using DispatchType = std::decay_t<decltype(type)>;
421
1
                            result =
422
1
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
1
                            return true;
424
1
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
7
                        auto call = [&](const auto& type) -> bool {
420
7
                            using DispatchType = std::decay_t<decltype(type)>;
421
7
                            result =
422
7
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
7
                            return true;
424
7
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Line
Count
Source
419
12
                        auto call = [&](const auto& type) -> bool {
420
12
                            using DispatchType = std::decay_t<decltype(type)>;
421
12
                            result =
422
12
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
12
                            return true;
424
12
                        };
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
18
                        auto call = [&](const auto& type) -> bool {
420
18
                            using DispatchType = std::decay_t<decltype(type)>;
421
18
                            result =
422
18
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
18
                            return true;
424
18
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
14
                        auto call = [&](const auto& type) -> bool {
420
14
                            using DispatchType = std::decay_t<decltype(type)>;
421
14
                            result =
422
14
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
14
                            return true;
424
14
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
Line
Count
Source
419
22
                        auto call = [&](const auto& type) -> bool {
420
22
                            using DispatchType = std::decay_t<decltype(type)>;
421
22
                            result =
422
22
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
22
                            return true;
424
22
                        };
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_
Line
Count
Source
419
47
                        auto call = [&](const auto& type) -> bool {
420
47
                            using DispatchType = std::decay_t<decltype(type)>;
421
47
                            result =
422
47
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
47
                            return true;
424
47
                        };
425
3.17k
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
3.17k
                    }
433
12.6k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
416
2.25k
                [&] {
417
2.25k
                    if (type == AllowedTypes) {
418
82
                        static_assert(is_decimalv3(AllowedTypes));
419
82
                        auto call = [&](const auto& type) -> bool {
420
82
                            using DispatchType = std::decay_t<decltype(type)>;
421
82
                            result =
422
82
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
82
                            return true;
424
82
                        };
425
82
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
82
                    }
433
2.25k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
416
2.25k
                [&] {
417
2.25k
                    if (type == AllowedTypes) {
418
1.19k
                        static_assert(is_decimalv3(AllowedTypes));
419
1.19k
                        auto call = [&](const auto& type) -> bool {
420
1.19k
                            using DispatchType = std::decay_t<decltype(type)>;
421
1.19k
                            result =
422
1.19k
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
1.19k
                            return true;
424
1.19k
                        };
425
1.19k
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
1.19k
                    }
433
2.25k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
416
2.25k
                [&] {
417
2.25k
                    if (type == AllowedTypes) {
418
866
                        static_assert(is_decimalv3(AllowedTypes));
419
866
                        auto call = [&](const auto& type) -> bool {
420
866
                            using DispatchType = std::decay_t<decltype(type)>;
421
866
                            result =
422
866
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
866
                            return true;
424
866
                        };
425
866
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
866
                    }
433
2.25k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
416
2.25k
                [&] {
417
2.25k
                    if (type == AllowedTypes) {
418
112
                        static_assert(is_decimalv3(AllowedTypes));
419
112
                        auto call = [&](const auto& type) -> bool {
420
112
                            using DispatchType = std::decay_t<decltype(type)>;
421
112
                            result =
422
112
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
112
                            return true;
424
112
                        };
425
112
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
112
                    }
433
2.25k
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
416
719
                [&] {
417
719
                    if (type == AllowedTypes) {
418
47
                        static_assert(is_decimalv3(AllowedTypes));
419
47
                        auto call = [&](const auto& type) -> bool {
420
47
                            using DispatchType = std::decay_t<decltype(type)>;
421
47
                            result =
422
47
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
47
                            return true;
424
47
                        };
425
47
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
47
                    }
433
719
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
416
719
                [&] {
417
719
                    if (type == AllowedTypes) {
418
502
                        static_assert(is_decimalv3(AllowedTypes));
419
502
                        auto call = [&](const auto& type) -> bool {
420
502
                            using DispatchType = std::decay_t<decltype(type)>;
421
502
                            result =
422
502
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
502
                            return true;
424
502
                        };
425
502
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
502
                    }
433
719
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
416
719
                [&] {
417
719
                    if (type == AllowedTypes) {
418
87
                        static_assert(is_decimalv3(AllowedTypes));
419
87
                        auto call = [&](const auto& type) -> bool {
420
87
                            using DispatchType = std::decay_t<decltype(type)>;
421
87
                            result =
422
87
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
87
                            return true;
424
87
                        };
425
87
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
87
                    }
433
719
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
416
719
                [&] {
417
719
                    if (type == AllowedTypes) {
418
83
                        static_assert(is_decimalv3(AllowedTypes));
419
83
                        auto call = [&](const auto& type) -> bool {
420
83
                            using DispatchType = std::decay_t<decltype(type)>;
421
83
                            result =
422
83
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
83
                            return true;
424
83
                        };
425
83
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
83
                    }
433
719
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
416
63
                [&] {
417
63
                    if (type == AllowedTypes) {
418
0
                        static_assert(is_decimalv3(AllowedTypes));
419
0
                        auto call = [&](const auto& type) -> bool {
420
0
                            using DispatchType = std::decay_t<decltype(type)>;
421
0
                            result =
422
0
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
0
                            return true;
424
0
                        };
425
0
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
0
                    }
433
63
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
416
63
                [&] {
417
63
                    if (type == AllowedTypes) {
418
0
                        static_assert(is_decimalv3(AllowedTypes));
419
0
                        auto call = [&](const auto& type) -> bool {
420
0
                            using DispatchType = std::decay_t<decltype(type)>;
421
0
                            result =
422
0
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
0
                            return true;
424
0
                        };
425
0
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
0
                    }
433
63
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
416
63
                [&] {
417
63
                    if (type == AllowedTypes) {
418
18
                        static_assert(is_decimalv3(AllowedTypes));
419
18
                        auto call = [&](const auto& type) -> bool {
420
18
                            using DispatchType = std::decay_t<decltype(type)>;
421
18
                            result =
422
18
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
18
                            return true;
424
18
                        };
425
18
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
18
                    }
433
63
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
416
63
                [&] {
417
63
                    if (type == AllowedTypes) {
418
45
                        static_assert(is_decimalv3(AllowedTypes));
419
45
                        auto call = [&](const auto& type) -> bool {
420
45
                            using DispatchType = std::decay_t<decltype(type)>;
421
45
                            result =
422
45
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
45
                            return true;
424
45
                        };
425
45
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
45
                    }
433
63
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
416
62
                [&] {
417
62
                    if (type == AllowedTypes) {
418
10
                        static_assert(is_decimalv3(AllowedTypes));
419
10
                        auto call = [&](const auto& type) -> bool {
420
10
                            using DispatchType = std::decay_t<decltype(type)>;
421
10
                            result =
422
10
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
10
                            return true;
424
10
                        };
425
10
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
10
                    }
433
62
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
416
62
                [&] {
417
62
                    if (type == AllowedTypes) {
418
8
                        static_assert(is_decimalv3(AllowedTypes));
419
8
                        auto call = [&](const auto& type) -> bool {
420
8
                            using DispatchType = std::decay_t<decltype(type)>;
421
8
                            result =
422
8
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
8
                            return true;
424
8
                        };
425
8
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
8
                    }
433
62
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
416
62
                [&] {
417
62
                    if (type == AllowedTypes) {
418
30
                        static_assert(is_decimalv3(AllowedTypes));
419
30
                        auto call = [&](const auto& type) -> bool {
420
30
                            using DispatchType = std::decay_t<decltype(type)>;
421
30
                            result =
422
30
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
30
                            return true;
424
30
                        };
425
30
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
30
                    }
433
62
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
416
62
                [&] {
417
62
                    if (type == AllowedTypes) {
418
14
                        static_assert(is_decimalv3(AllowedTypes));
419
14
                        auto call = [&](const auto& type) -> bool {
420
14
                            using DispatchType = std::decay_t<decltype(type)>;
421
14
                            result =
422
14
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
14
                            return true;
424
14
                        };
425
14
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
14
                    }
433
62
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv
Line
Count
Source
416
69
                [&] {
417
69
                    if (type == AllowedTypes) {
418
0
                        static_assert(is_decimalv3(AllowedTypes));
419
0
                        auto call = [&](const auto& type) -> bool {
420
0
                            using DispatchType = std::decay_t<decltype(type)>;
421
0
                            result =
422
0
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
0
                            return true;
424
0
                        };
425
0
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
0
                    }
433
69
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv
Line
Count
Source
416
69
                [&] {
417
69
                    if (type == AllowedTypes) {
418
0
                        static_assert(is_decimalv3(AllowedTypes));
419
0
                        auto call = [&](const auto& type) -> bool {
420
0
                            using DispatchType = std::decay_t<decltype(type)>;
421
0
                            result =
422
0
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
0
                            return true;
424
0
                        };
425
0
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
0
                    }
433
69
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv
Line
Count
Source
416
69
                [&] {
417
69
                    if (type == AllowedTypes) {
418
22
                        static_assert(is_decimalv3(AllowedTypes));
419
22
                        auto call = [&](const auto& type) -> bool {
420
22
                            using DispatchType = std::decay_t<decltype(type)>;
421
22
                            result =
422
22
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
22
                            return true;
424
22
                        };
425
22
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
22
                    }
433
69
                }(),
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv
Line
Count
Source
416
69
                [&] {
417
69
                    if (type == AllowedTypes) {
418
47
                        static_assert(is_decimalv3(AllowedTypes));
419
47
                        auto call = [&](const auto& type) -> bool {
420
47
                            using DispatchType = std::decay_t<decltype(type)>;
421
47
                            result =
422
47
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
47
                            return true;
424
47
                        };
425
47
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
0
                            throw doris::Exception(
427
0
                                    ErrorCode::INTERNAL_ERROR,
428
0
                                    "agg function {} error, arg type {}, result type {}", name,
429
0
                                    argument_types[define_index]->get_name(),
430
0
                                    result_type->get_name());
431
0
                        }
432
47
                    }
433
69
                }(),
434
3.17k
                ...);
435
436
3.17k
        return result;
437
3.17k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
397
2.25k
                                                             TArgs&&... args) {
398
2.25k
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
2.25k
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
2.25k
                          ResultType < InputType) {
401
2.25k
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
2.25k
                                       "agg function {} error, arg type {}, result type {}", name,
403
2.25k
                                       argument_types[define_index]->get_name(),
404
2.25k
                                       result_type->get_name());
405
2.25k
                return nullptr;
406
2.25k
            } else {
407
2.25k
                return creator_without_type::create<
408
2.25k
                        typename Class::template T<InputType, ResultType>>(
409
2.25k
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
2.25k
            }
411
2.25k
        };
412
2.25k
        AggregateFunctionPtr result = nullptr;
413
2.25k
        auto type = argument_types[define_index]->get_primitive_type();
414
415
2.25k
        (
416
2.25k
                [&] {
417
2.25k
                    if (type == AllowedTypes) {
418
2.25k
                        static_assert(is_decimalv3(AllowedTypes));
419
2.25k
                        auto call = [&](const auto& type) -> bool {
420
2.25k
                            using DispatchType = std::decay_t<decltype(type)>;
421
2.25k
                            result =
422
2.25k
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
2.25k
                            return true;
424
2.25k
                        };
425
2.25k
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
2.25k
                            throw doris::Exception(
427
2.25k
                                    ErrorCode::INTERNAL_ERROR,
428
2.25k
                                    "agg function {} error, arg type {}, result type {}", name,
429
2.25k
                                    argument_types[define_index]->get_name(),
430
2.25k
                                    result_type->get_name());
431
2.25k
                        }
432
2.25k
                    }
433
2.25k
                }(),
434
2.25k
                ...);
435
436
2.25k
        return result;
437
2.25k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
397
718
                                                             TArgs&&... args) {
398
718
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
718
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
718
                          ResultType < InputType) {
401
718
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
718
                                       "agg function {} error, arg type {}, result type {}", name,
403
718
                                       argument_types[define_index]->get_name(),
404
718
                                       result_type->get_name());
405
718
                return nullptr;
406
718
            } else {
407
718
                return creator_without_type::create<
408
718
                        typename Class::template T<InputType, ResultType>>(
409
718
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
718
            }
411
718
        };
412
718
        AggregateFunctionPtr result = nullptr;
413
718
        auto type = argument_types[define_index]->get_primitive_type();
414
415
718
        (
416
718
                [&] {
417
718
                    if (type == AllowedTypes) {
418
718
                        static_assert(is_decimalv3(AllowedTypes));
419
718
                        auto call = [&](const auto& type) -> bool {
420
718
                            using DispatchType = std::decay_t<decltype(type)>;
421
718
                            result =
422
718
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
718
                            return true;
424
718
                        };
425
718
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
718
                            throw doris::Exception(
427
718
                                    ErrorCode::INTERNAL_ERROR,
428
718
                                    "agg function {} error, arg type {}, result type {}", name,
429
718
                                    argument_types[define_index]->get_name(),
430
718
                                    result_type->get_name());
431
718
                        }
432
718
                    }
433
718
                }(),
434
718
                ...);
435
436
718
        return result;
437
718
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
397
63
                                                             TArgs&&... args) {
398
63
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
63
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
63
                          ResultType < InputType) {
401
63
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
63
                                       "agg function {} error, arg type {}, result type {}", name,
403
63
                                       argument_types[define_index]->get_name(),
404
63
                                       result_type->get_name());
405
63
                return nullptr;
406
63
            } else {
407
63
                return creator_without_type::create<
408
63
                        typename Class::template T<InputType, ResultType>>(
409
63
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
63
            }
411
63
        };
412
63
        AggregateFunctionPtr result = nullptr;
413
63
        auto type = argument_types[define_index]->get_primitive_type();
414
415
63
        (
416
63
                [&] {
417
63
                    if (type == AllowedTypes) {
418
63
                        static_assert(is_decimalv3(AllowedTypes));
419
63
                        auto call = [&](const auto& type) -> bool {
420
63
                            using DispatchType = std::decay_t<decltype(type)>;
421
63
                            result =
422
63
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
63
                            return true;
424
63
                        };
425
63
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
63
                            throw doris::Exception(
427
63
                                    ErrorCode::INTERNAL_ERROR,
428
63
                                    "agg function {} error, arg type {}, result type {}", name,
429
63
                                    argument_types[define_index]->get_name(),
430
63
                                    result_type->get_name());
431
63
                        }
432
63
                    }
433
63
                }(),
434
63
                ...);
435
436
63
        return result;
437
63
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
397
62
                                                             TArgs&&... args) {
398
62
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
62
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
62
                          ResultType < InputType) {
401
62
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
62
                                       "agg function {} error, arg type {}, result type {}", name,
403
62
                                       argument_types[define_index]->get_name(),
404
62
                                       result_type->get_name());
405
62
                return nullptr;
406
62
            } else {
407
62
                return creator_without_type::create<
408
62
                        typename Class::template T<InputType, ResultType>>(
409
62
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
62
            }
411
62
        };
412
62
        AggregateFunctionPtr result = nullptr;
413
62
        auto type = argument_types[define_index]->get_primitive_type();
414
415
62
        (
416
62
                [&] {
417
62
                    if (type == AllowedTypes) {
418
62
                        static_assert(is_decimalv3(AllowedTypes));
419
62
                        auto call = [&](const auto& type) -> bool {
420
62
                            using DispatchType = std::decay_t<decltype(type)>;
421
62
                            result =
422
62
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
62
                            return true;
424
62
                        };
425
62
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
62
                            throw doris::Exception(
427
62
                                    ErrorCode::INTERNAL_ERROR,
428
62
                                    "agg function {} error, arg type {}, result type {}", name,
429
62
                                    argument_types[define_index]->get_name(),
430
62
                                    result_type->get_name());
431
62
                        }
432
62
                    }
433
62
                }(),
434
62
                ...);
435
436
62
        return result;
437
62
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_
Line
Count
Source
397
69
                                                             TArgs&&... args) {
398
69
        auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() {
399
69
            if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) &&
400
69
                          ResultType < InputType) {
401
69
                throw doris::Exception(ErrorCode::INTERNAL_ERROR,
402
69
                                       "agg function {} error, arg type {}, result type {}", name,
403
69
                                       argument_types[define_index]->get_name(),
404
69
                                       result_type->get_name());
405
69
                return nullptr;
406
69
            } else {
407
69
                return creator_without_type::create<
408
69
                        typename Class::template T<InputType, ResultType>>(
409
69
                        argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...);
410
69
            }
411
69
        };
412
69
        AggregateFunctionPtr result = nullptr;
413
69
        auto type = argument_types[define_index]->get_primitive_type();
414
415
69
        (
416
69
                [&] {
417
69
                    if (type == AllowedTypes) {
418
69
                        static_assert(is_decimalv3(AllowedTypes));
419
69
                        auto call = [&](const auto& type) -> bool {
420
69
                            using DispatchType = std::decay_t<decltype(type)>;
421
69
                            result =
422
69
                                    create.template operator()<AllowedTypes, DispatchType::PType>();
423
69
                            return true;
424
69
                        };
425
69
                        if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) {
426
69
                            throw doris::Exception(
427
69
                                    ErrorCode::INTERNAL_ERROR,
428
69
                                    "agg function {} error, arg type {}, result type {}", name,
429
69
                                    argument_types[define_index]->get_name(),
430
69
                                    result_type->get_name());
431
69
                        }
432
69
                    }
433
69
                }(),
434
69
                ...);
435
436
69
        return result;
437
69
    }
438
439
    template <template <PrimitiveType> class AggregateFunctionTemplate>
440
    static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types,
441
                                        const DataTypePtr& result_type,
442
                                        const bool result_is_nullable,
443
28.6k
                                        const AggregateFunctionAttr& attr) {
444
28.6k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
28.6k
                                                                   result_is_nullable, attr);
446
28.6k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE7creatorINS_26AggregateFunctionSumSimpleEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
443
11.7k
                                        const AggregateFunctionAttr& attr) {
444
11.7k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
11.7k
                                                                   result_is_nullable, attr);
446
11.7k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE7creatorINS_16AggregateFuncAvgEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
443
1.88k
                                        const AggregateFunctionAttr& attr) {
444
1.88k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
1.88k
                                                                   result_is_nullable, attr);
446
1.88k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE7creatorINS_32AggregateFunctionSumSimpleReaderEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
443
12.7k
                                        const AggregateFunctionAttr& attr) {
444
12.7k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
12.7k
                                                                   result_is_nullable, attr);
446
12.7k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_27AggregateFunctionPercentileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
443
1.83k
                                        const AggregateFunctionAttr& attr) {
444
1.83k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
1.83k
                                                                   result_is_nullable, attr);
446
1.83k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_32AggregateFunctionPercentileArrayEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
443
509
                                        const AggregateFunctionAttr& attr) {
444
509
        return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types,
445
509
                                                                   result_is_nullable, attr);
446
509
    }
447
448
    // Create agg function with result type from FE.
449
    // Currently only used for decimalv3 sum and avg.
450
    template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate>
451
    static AggregateFunctionPtr creator_with_result_type(const std::string& name,
452
                                                         const DataTypes& argument_types,
453
                                                         const DataTypePtr& result_type,
454
                                                         const bool result_is_nullable,
455
3.17k
                                                         const AggregateFunctionAttr& attr) {
456
3.17k
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
3.17k
                name, argument_types, result_type, result_is_nullable, attr);
458
3.17k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_29AggregateFunctionSumDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
455
2.25k
                                                         const AggregateFunctionAttr& attr) {
456
2.25k
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
2.25k
                name, argument_types, result_type, result_is_nullable, attr);
458
2.25k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_25AggregateFuncAvgDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
455
719
                                                         const AggregateFunctionAttr& attr) {
456
719
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
719
                name, argument_types, result_type, result_is_nullable, attr);
458
719
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
455
63
                                                         const AggregateFunctionAttr& attr) {
456
63
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
63
                name, argument_types, result_type, result_is_nullable, attr);
458
63
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
455
62
                                                         const AggregateFunctionAttr& attr) {
456
62
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
62
                name, argument_types, result_type, result_is_nullable, attr);
458
62
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
455
69
                                                         const AggregateFunctionAttr& attr) {
456
69
        return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>(
457
69
                name, argument_types, result_type, result_is_nullable, attr);
458
69
    }
459
460
    template <template <PrimitiveType> class AggregateFunctionTemplate, typename... TArgs>
461
31.2k
    static AggregateFunctionPtr create(TArgs&&... args) {
462
31.2k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
31.2k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_32AggregateFunctionDistinctNumericEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrERKS6_INS_18IAggregateFunctionEEEEESK_DpOT0_
Line
Count
Source
461
2.17k
    static AggregateFunctionPtr create(TArgs&&... args) {
462
2.17k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
2.17k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS5_2EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_
Line
Count
Source
461
306
    static AggregateFunctionPtr create(TArgs&&... args) {
462
306
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
306
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS5_3EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_
Line
Count
Source
461
321
    static AggregateFunctionPtr create(TArgs&&... args) {
462
321
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
321
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS5_4EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_
Line
Count
Source
461
221
    static AggregateFunctionPtr create(TArgs&&... args) {
462
221
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
221
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE6createINS_36AggregateFunctionApproxCountDistinctEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrEEEES6_INS_18IAggregateFunctionEEDpOT0_
Line
Count
Source
461
28.1k
    static AggregateFunctionPtr create(TArgs&&... args) {
462
28.1k
        return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...);
463
28.1k
    }
464
465
    template <template <typename> class AggregateFunctionTemplate,
466
              template <PrimitiveType> class Data>
467
    static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types,
468
                                        const DataTypePtr& result_type,
469
                                        const bool result_is_nullable,
470
                                        const AggregateFunctionAttr& attr) {
471
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(argument_types,
472
                                                                       result_is_nullable, attr);
473
    }
474
475
    template <template <typename> class AggregateFunctionTemplate,
476
              template <PrimitiveType> class Data, typename... TArgs>
477
3.64k
    static AggregateFunctionPtr create(TArgs&&... args) {
478
3.64k
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
3.64k
                std::forward<TArgs>(args)...);
480
3.64k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
12
    static AggregateFunctionPtr create(TArgs&&... args) {
478
12
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
12
                std::forward<TArgs>(args)...);
480
12
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_9ImplArrayEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
442
    static AggregateFunctionPtr create(TArgs&&... args) {
478
442
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
442
                std::forward<TArgs>(args)...);
480
442
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
2
    static AggregateFunctionPtr create(TArgs&&... args) {
478
2
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
2
                std::forward<TArgs>(args)...);
480
2
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_10ImplWeightEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
435
    static AggregateFunctionPtr create(TArgs&&... args) {
478
435
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
435
                std::forward<TArgs>(args)...);
480
435
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
3
    static AggregateFunctionPtr create(TArgs&&... args) {
478
3
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
3
                std::forward<TArgs>(args)...);
480
3
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
11
    static AggregateFunctionPtr create(TArgs&&... args) {
478
11
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
11
                std::forward<TArgs>(args)...);
480
11
    }
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
451
    static AggregateFunctionPtr create(TArgs&&... args) {
478
451
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
451
                std::forward<TArgs>(args)...);
480
451
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
2
    static AggregateFunctionPtr create(TArgs&&... args) {
478
2
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
2
                std::forward<TArgs>(args)...);
480
2
    }
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
2
    static AggregateFunctionPtr create(TArgs&&... args) {
478
2
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
2
                std::forward<TArgs>(args)...);
480
2
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE6createINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
168
    static AggregateFunctionPtr create(TArgs&&... args) {
478
168
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
168
                std::forward<TArgs>(args)...);
480
168
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE6createINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
716
    static AggregateFunctionPtr create(TArgs&&... args) {
478
716
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
716
                std::forward<TArgs>(args)...);
480
716
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_14CorrMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
467
    static AggregateFunctionPtr create(TArgs&&... args) {
478
467
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
467
                std::forward<TArgs>(args)...);
480
467
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
26
    static AggregateFunctionPtr create(TArgs&&... args) {
478
26
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
26
                std::forward<TArgs>(args)...);
480
26
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_8SampDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
457
    static AggregateFunctionPtr create(TArgs&&... args) {
478
457
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
457
                std::forward<TArgs>(args)...);
480
457
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_7PopDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
477
454
    static AggregateFunctionPtr create(TArgs&&... args) {
478
454
        return create_base<CurryData<AggregateFunctionTemplate, Data>>(
479
454
                std::forward<TArgs>(args)...);
480
454
    }
481
482
    template <template <typename> class AggregateFunctionTemplate, template <typename> class Data,
483
              template <PrimitiveType> class Impl>
484
    static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types,
485
                                        const DataTypePtr& result_type,
486
                                        const bool result_is_nullable,
487
                                        const AggregateFunctionAttr& attr) {
488
        return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>(
489
                argument_types, result_is_nullable, attr);
490
    }
491
492
    template <template <typename> class AggregateFunctionTemplate, template <typename> class Data,
493
              template <PrimitiveType> class Impl, typename... TArgs>
494
    static AggregateFunctionPtr create(TArgs&&... args) {
495
        return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>(
496
                std::forward<TArgs>(args)...);
497
    }
498
499
    template <template <PrimitiveType, typename> class AggregateFunctionTemplate,
500
              template <PrimitiveType> class Data>
501
    static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types,
502
                                        const DataTypePtr& result_type,
503
                                        const bool result_is_nullable,
504
1.83k
                                        const AggregateFunctionAttr& attr) {
505
1.83k
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
1.83k
                argument_types, result_is_nullable, attr);
507
1.83k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
504
607
                                        const AggregateFunctionAttr& attr) {
505
607
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
607
                argument_types, result_is_nullable, attr);
507
607
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
504
606
                                        const AggregateFunctionAttr& attr) {
505
606
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
606
                argument_types, result_is_nullable, attr);
507
606
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
504
606
                                        const AggregateFunctionAttr& attr) {
505
606
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
606
                argument_types, result_is_nullable, attr);
507
606
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
504
7
                                        const AggregateFunctionAttr& attr) {
505
7
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
7
                argument_types, result_is_nullable, attr);
507
7
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE
Line
Count
Source
504
8
                                        const AggregateFunctionAttr& attr) {
505
8
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
506
8
                argument_types, result_is_nullable, attr);
507
8
    }
508
509
    template <template <PrimitiveType, typename> class AggregateFunctionTemplate,
510
              template <PrimitiveType> class Data, typename... TArgs>
511
2.00k
    static AggregateFunctionPtr create(TArgs&&... args) {
512
2.00k
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
513
2.00k
                std::forward<TArgs>(args)...);
514
2.00k
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE6createINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
511
1.40k
    static AggregateFunctionPtr create(TArgs&&... args) {
512
1.40k
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
513
1.40k
                std::forward<TArgs>(args)...);
514
1.40k
    }
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE6createINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
511
13
    static AggregateFunctionPtr create(TArgs&&... args) {
512
13
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
513
13
                std::forward<TArgs>(args)...);
514
13
    }
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_
Line
Count
Source
511
586
    static AggregateFunctionPtr create(TArgs&&... args) {
512
586
        return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>(
513
586
                std::forward<TArgs>(args)...);
514
586
    }
515
};
516
517
template <PrimitiveType... AllowedTypes>
518
using creator_with_type_list = creator_with_type_list_base<0, AllowedTypes...>;
519
520
} // namespace  doris
521
522
#include "common/compile_check_end.h"