be/src/exprs/aggregate/aggregate_function_topn.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 | | |
18 | | #pragma once |
19 | | |
20 | | #include <rapidjson/encodings.h> |
21 | | #include <rapidjson/stringbuffer.h> |
22 | | #include <rapidjson/writer.h> |
23 | | #include <stddef.h> |
24 | | #include <stdint.h> |
25 | | |
26 | | #include <algorithm> |
27 | | #include <functional> |
28 | | #include <memory> |
29 | | #include <string> |
30 | | #include <utility> |
31 | | #include <vector> |
32 | | |
33 | | #include "core/assert_cast.h" |
34 | | #include "core/column/column.h" |
35 | | #include "core/column/column_array.h" |
36 | | #include "core/column/column_nullable.h" |
37 | | #include "core/column/column_string.h" |
38 | | #include "core/column/column_vector.h" |
39 | | #include "core/data_type/data_type_array.h" |
40 | | #include "core/data_type/data_type_nullable.h" |
41 | | #include "core/data_type/data_type_string.h" |
42 | | #include "core/string_ref.h" |
43 | | #include "core/types.h" |
44 | | #include "exec/common/hash_table/phmap_fwd_decl.h" |
45 | | #include "exprs/aggregate/aggregate_function.h" |
46 | | #include "exprs/aggregate/aggregate_function_simple_factory.h" |
47 | | #include "util/io_helper.h" |
48 | | |
49 | | namespace doris {} // namespace doris |
50 | | |
51 | | namespace doris { |
52 | | |
53 | | // space-saving algorithm |
54 | | template <PrimitiveType T> |
55 | | struct AggregateFunctionTopNData { |
56 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
57 | | using DataType = typename PrimitiveTypeTraits<T>::CppType; |
58 | 5.24k | void set_paramenters(int input_top_num, int space_expand_rate = 50) { |
59 | 5.24k | top_num = input_top_num; |
60 | 5.24k | capacity = (uint64_t)top_num * space_expand_rate; |
61 | 5.24k | } _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE15set_paramentersEii Line | Count | Source | 58 | 4.75k | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 4.75k | top_num = input_top_num; | 60 | 4.75k | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 4.75k | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE15set_paramentersEii _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE15set_paramentersEii Line | Count | Source | 58 | 30 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 30 | top_num = input_top_num; | 60 | 30 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 30 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE15set_paramentersEii Line | Count | Source | 58 | 42 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 42 | top_num = input_top_num; | 60 | 42 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 42 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE15set_paramentersEii Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE15set_paramentersEii Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE15set_paramentersEii _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE15set_paramentersEii Line | Count | Source | 58 | 15 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 15 | top_num = input_top_num; | 60 | 15 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 15 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE15set_paramentersEii Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE15set_paramentersEii _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE15set_paramentersEii Line | Count | Source | 58 | 23 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 23 | top_num = input_top_num; | 60 | 23 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 23 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE15set_paramentersEii _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE15set_paramentersEii Line | Count | Source | 58 | 310 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 310 | top_num = input_top_num; | 60 | 310 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 310 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE15set_paramentersEii Line | Count | Source | 58 | 36 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 36 | top_num = input_top_num; | 60 | 36 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 36 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE15set_paramentersEii Line | Count | Source | 58 | 30 | void set_paramenters(int input_top_num, int space_expand_rate = 50) { | 59 | 30 | top_num = input_top_num; | 60 | 30 | capacity = (uint64_t)top_num * space_expand_rate; | 61 | 30 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE15set_paramentersEii Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE15set_paramentersEii Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE15set_paramentersEii |
62 | | |
63 | 5.06k | void add(const StringRef& value, const UInt64& increment = 1) { |
64 | 5.06k | std::string data = value.to_string(); |
65 | 5.06k | auto it = counter_map.find(data); |
66 | 5.06k | if (it != counter_map.end()) { |
67 | 4.14k | it->second = it->second + increment; |
68 | 4.14k | } else { |
69 | 918 | counter_map.insert({data, increment}); |
70 | 918 | } |
71 | 5.06k | } _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE3addERKNS_9StringRefERKm Line | Count | Source | 63 | 4.75k | void add(const StringRef& value, const UInt64& increment = 1) { | 64 | 4.75k | std::string data = value.to_string(); | 65 | 4.75k | auto it = counter_map.find(data); | 66 | 4.75k | if (it != counter_map.end()) { | 67 | 4.11k | it->second = it->second + increment; | 68 | 4.11k | } else { | 69 | 643 | counter_map.insert({data, increment}); | 70 | 643 | } | 71 | 4.75k | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE3addERKNS_9StringRefERKm Line | Count | Source | 63 | 310 | void add(const StringRef& value, const UInt64& increment = 1) { | 64 | 310 | std::string data = value.to_string(); | 65 | 310 | auto it = counter_map.find(data); | 66 | 310 | if (it != counter_map.end()) { | 67 | 35 | it->second = it->second + increment; | 68 | 275 | } else { | 69 | 275 | counter_map.insert({data, increment}); | 70 | 275 | } | 71 | 310 | } |
|
72 | | |
73 | 176 | void add(const DataType& value, const UInt64& increment = 1) { |
74 | 176 | auto it = counter_map.find(value); |
75 | 176 | if (it != counter_map.end()) { |
76 | 53 | it->second = it->second + increment; |
77 | 123 | } else { |
78 | 123 | counter_map.insert({value, increment}); |
79 | 123 | } |
80 | 176 | } Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE3addERKaRKm _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE3addERKsRKm Line | Count | Source | 73 | 30 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 30 | auto it = counter_map.find(value); | 75 | 30 | if (it != counter_map.end()) { | 76 | 14 | it->second = it->second + increment; | 77 | 16 | } else { | 78 | 16 | counter_map.insert({value, increment}); | 79 | 16 | } | 80 | 30 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE3addERKiRKm Line | Count | Source | 73 | 42 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 42 | auto it = counter_map.find(value); | 75 | 42 | if (it != counter_map.end()) { | 76 | 6 | it->second = it->second + increment; | 77 | 36 | } else { | 78 | 36 | counter_map.insert({value, increment}); | 79 | 36 | } | 80 | 42 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE3addERKlRKm Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE3addERKnRKm Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE3addERKfRKm _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE3addERKdRKm Line | Count | Source | 73 | 15 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 15 | auto it = counter_map.find(value); | 75 | 15 | if (it != counter_map.end()) { | 76 | 2 | it->second = it->second + increment; | 77 | 13 | } else { | 78 | 13 | counter_map.insert({value, increment}); | 79 | 13 | } | 80 | 15 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE3addERKNS_7DecimalIiEERKm Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE3addERKNS_7DecimalIlEERKm _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE3addERKNS_12Decimal128V3ERKm Line | Count | Source | 73 | 23 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 23 | auto it = counter_map.find(value); | 75 | 23 | if (it != counter_map.end()) { | 76 | 6 | it->second = it->second + increment; | 77 | 17 | } else { | 78 | 17 | counter_map.insert({value, increment}); | 79 | 17 | } | 80 | 23 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE3addERKNS_7DecimalIN4wide7integerILm256EiEEEERKm _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE3addERKNS_11DateV2ValueINS_15DateV2ValueTypeEEERKm Line | Count | Source | 73 | 36 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 36 | auto it = counter_map.find(value); | 75 | 36 | if (it != counter_map.end()) { | 76 | 13 | it->second = it->second + increment; | 77 | 23 | } else { | 78 | 23 | counter_map.insert({value, increment}); | 79 | 23 | } | 80 | 36 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE3addERKNS_11DateV2ValueINS_19DateTimeV2ValueTypeEEERKm Line | Count | Source | 73 | 30 | void add(const DataType& value, const UInt64& increment = 1) { | 74 | 30 | auto it = counter_map.find(value); | 75 | 30 | if (it != counter_map.end()) { | 76 | 12 | it->second = it->second + increment; | 77 | 18 | } else { | 78 | 18 | counter_map.insert({value, increment}); | 79 | 18 | } | 80 | 30 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE3addERKNS_16TimestampTzValueERKm Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE3addERKjRKm Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE3addERKoRKm |
81 | | |
82 | 623 | void merge(const AggregateFunctionTopNData& rhs) { |
83 | 623 | if (!rhs.top_num) { |
84 | 0 | return; |
85 | 0 | } |
86 | | |
87 | 623 | top_num = rhs.top_num; |
88 | 623 | capacity = rhs.capacity; |
89 | | |
90 | 623 | bool lhs_full = (counter_map.size() >= capacity); |
91 | 623 | bool rhs_full = (rhs.counter_map.size() >= capacity); |
92 | | |
93 | 623 | uint64_t lhs_min = 0; |
94 | 623 | uint64_t rhs_min = 0; |
95 | | |
96 | 623 | if (lhs_full) { |
97 | 0 | lhs_min = UINT64_MAX; |
98 | 0 | for (auto it : counter_map) { |
99 | 0 | lhs_min = std::min(lhs_min, it.second); |
100 | 0 | } |
101 | 0 | } |
102 | | |
103 | 623 | if (rhs_full) { |
104 | 0 | rhs_min = UINT64_MAX; |
105 | 0 | for (auto it : rhs.counter_map) { |
106 | 0 | rhs_min = std::min(rhs_min, it.second); |
107 | 0 | } |
108 | |
|
109 | 0 | for (auto& it : counter_map) { |
110 | 0 | it.second += rhs_min; |
111 | 0 | } |
112 | 0 | } |
113 | | |
114 | 821 | for (auto rhs_it : rhs.counter_map) { |
115 | 821 | auto lhs_it = counter_map.find(rhs_it.first); |
116 | 821 | if (lhs_it != counter_map.end()) { |
117 | 289 | lhs_it->second += rhs_it.second - rhs_min; |
118 | 532 | } else { |
119 | 532 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); |
120 | 532 | } |
121 | 821 | } |
122 | 623 | } _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE5mergeERKS2_ Line | Count | Source | 82 | 372 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 372 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 372 | top_num = rhs.top_num; | 88 | 372 | capacity = rhs.capacity; | 89 | | | 90 | 372 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 372 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 372 | uint64_t lhs_min = 0; | 94 | 372 | uint64_t rhs_min = 0; | 95 | | | 96 | 372 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 372 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 482 | for (auto rhs_it : rhs.counter_map) { | 115 | 482 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 482 | if (lhs_it != counter_map.end()) { | 117 | 162 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 320 | } else { | 119 | 320 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 320 | } | 121 | 482 | } | 122 | 372 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE5mergeERKS2_ _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE5mergeERKS2_ Line | Count | Source | 82 | 2 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 2 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 2 | top_num = rhs.top_num; | 88 | 2 | capacity = rhs.capacity; | 89 | | | 90 | 2 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 2 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 2 | uint64_t lhs_min = 0; | 94 | 2 | uint64_t rhs_min = 0; | 95 | | | 96 | 2 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 2 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 16 | for (auto rhs_it : rhs.counter_map) { | 115 | 16 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 16 | if (lhs_it != counter_map.end()) { | 117 | 0 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 16 | } else { | 119 | 16 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 16 | } | 121 | 16 | } | 122 | 2 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE5mergeERKS2_ Line | Count | Source | 82 | 2 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 2 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 2 | top_num = rhs.top_num; | 88 | 2 | capacity = rhs.capacity; | 89 | | | 90 | 2 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 2 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 2 | uint64_t lhs_min = 0; | 94 | 2 | uint64_t rhs_min = 0; | 95 | | | 96 | 2 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 2 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 6 | for (auto rhs_it : rhs.counter_map) { | 115 | 6 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 6 | if (lhs_it != counter_map.end()) { | 117 | 0 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 6 | } else { | 119 | 6 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 6 | } | 121 | 6 | } | 122 | 2 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE5mergeERKS2_ _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE5mergeERKS2_ Line | Count | Source | 82 | 1 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 1 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 1 | top_num = rhs.top_num; | 88 | 1 | capacity = rhs.capacity; | 89 | | | 90 | 1 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 1 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 1 | uint64_t lhs_min = 0; | 94 | 1 | uint64_t rhs_min = 0; | 95 | | | 96 | 1 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 1 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 3 | for (auto rhs_it : rhs.counter_map) { | 115 | 3 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 3 | if (lhs_it != counter_map.end()) { | 117 | 0 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 3 | } else { | 119 | 3 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 3 | } | 121 | 3 | } | 122 | 1 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE5mergeERKS2_ _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE5mergeERKS2_ Line | Count | Source | 82 | 241 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 241 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 241 | top_num = rhs.top_num; | 88 | 241 | capacity = rhs.capacity; | 89 | | | 90 | 241 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 241 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 241 | uint64_t lhs_min = 0; | 94 | 241 | uint64_t rhs_min = 0; | 95 | | | 96 | 241 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 241 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 273 | for (auto rhs_it : rhs.counter_map) { | 115 | 273 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 273 | if (lhs_it != counter_map.end()) { | 117 | 127 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 146 | } else { | 119 | 146 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 146 | } | 121 | 273 | } | 122 | 241 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE5mergeERKS2_ Line | Count | Source | 82 | 3 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 3 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 3 | top_num = rhs.top_num; | 88 | 3 | capacity = rhs.capacity; | 89 | | | 90 | 3 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 3 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 3 | uint64_t lhs_min = 0; | 94 | 3 | uint64_t rhs_min = 0; | 95 | | | 96 | 3 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 3 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 23 | for (auto rhs_it : rhs.counter_map) { | 115 | 23 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 23 | if (lhs_it != counter_map.end()) { | 117 | 0 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 23 | } else { | 119 | 23 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 23 | } | 121 | 23 | } | 122 | 3 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE5mergeERKS2_ Line | Count | Source | 82 | 2 | void merge(const AggregateFunctionTopNData& rhs) { | 83 | 2 | if (!rhs.top_num) { | 84 | 0 | return; | 85 | 0 | } | 86 | | | 87 | 2 | top_num = rhs.top_num; | 88 | 2 | capacity = rhs.capacity; | 89 | | | 90 | 2 | bool lhs_full = (counter_map.size() >= capacity); | 91 | 2 | bool rhs_full = (rhs.counter_map.size() >= capacity); | 92 | | | 93 | 2 | uint64_t lhs_min = 0; | 94 | 2 | uint64_t rhs_min = 0; | 95 | | | 96 | 2 | if (lhs_full) { | 97 | 0 | lhs_min = UINT64_MAX; | 98 | 0 | for (auto it : counter_map) { | 99 | 0 | lhs_min = std::min(lhs_min, it.second); | 100 | 0 | } | 101 | 0 | } | 102 | | | 103 | 2 | if (rhs_full) { | 104 | 0 | rhs_min = UINT64_MAX; | 105 | 0 | for (auto it : rhs.counter_map) { | 106 | 0 | rhs_min = std::min(rhs_min, it.second); | 107 | 0 | } | 108 | |
| 109 | 0 | for (auto& it : counter_map) { | 110 | 0 | it.second += rhs_min; | 111 | 0 | } | 112 | 0 | } | 113 | | | 114 | 18 | for (auto rhs_it : rhs.counter_map) { | 115 | 18 | auto lhs_it = counter_map.find(rhs_it.first); | 116 | 18 | if (lhs_it != counter_map.end()) { | 117 | 0 | lhs_it->second += rhs_it.second - rhs_min; | 118 | 18 | } else { | 119 | 18 | counter_map.insert({rhs_it.first, rhs_it.second + lhs_min}); | 120 | 18 | } | 121 | 18 | } | 122 | 2 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE5mergeERKS2_ |
123 | | |
124 | | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> get_remain_vector() |
125 | 1.03k | const { |
126 | 1.03k | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; |
127 | 1.76k | for (auto it : counter_map) { |
128 | 1.76k | counter_vector.emplace_back(it.second, it.first); |
129 | 1.76k | } |
130 | 1.03k | std::sort(counter_vector.begin(), counter_vector.end(), |
131 | 1.03k | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); |
132 | 1.03k | return counter_vector; |
133 | 1.03k | } _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE17get_remain_vectorB5cxx11Ev Line | Count | Source | 125 | 609 | const { | 126 | 609 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 1.02k | for (auto it : counter_map) { | 128 | 1.02k | counter_vector.emplace_back(it.second, it.first); | 129 | 1.02k | } | 130 | 609 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 609 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 609 | return counter_vector; | 133 | 609 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE17get_remain_vectorEv _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE17get_remain_vectorEv Line | Count | Source | 125 | 4 | const { | 126 | 4 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 32 | for (auto it : counter_map) { | 128 | 32 | counter_vector.emplace_back(it.second, it.first); | 129 | 32 | } | 130 | 4 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 4 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 4 | return counter_vector; | 133 | 4 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE17get_remain_vectorEv Line | Count | Source | 125 | 20 | const { | 126 | 20 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 42 | for (auto it : counter_map) { | 128 | 42 | counter_vector.emplace_back(it.second, it.first); | 129 | 42 | } | 130 | 20 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 20 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 20 | return counter_vector; | 133 | 20 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE17get_remain_vectorEv Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE17get_remain_vectorEv Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE17get_remain_vectorEv _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE17get_remain_vectorEv Line | Count | Source | 125 | 16 | const { | 126 | 16 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 75 | for (auto it : counter_map) { | 128 | 75 | counter_vector.emplace_back(it.second, it.first); | 129 | 75 | } | 130 | 16 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 16 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 16 | return counter_vector; | 133 | 16 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE17get_remain_vectorEv Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE17get_remain_vectorEv _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE17get_remain_vectorEv Line | Count | Source | 125 | 19 | const { | 126 | 19 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 86 | for (auto it : counter_map) { | 128 | 86 | counter_vector.emplace_back(it.second, it.first); | 129 | 86 | } | 130 | 19 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 19 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 19 | return counter_vector; | 133 | 19 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE17get_remain_vectorEv _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE17get_remain_vectorB5cxx11Ev Line | Count | Source | 125 | 356 | const { | 126 | 356 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 421 | for (auto it : counter_map) { | 128 | 421 | counter_vector.emplace_back(it.second, it.first); | 129 | 421 | } | 130 | 356 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 356 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 356 | return counter_vector; | 133 | 356 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE17get_remain_vectorEv Line | Count | Source | 125 | 6 | const { | 126 | 6 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 46 | for (auto it : counter_map) { | 128 | 46 | counter_vector.emplace_back(it.second, it.first); | 129 | 46 | } | 130 | 6 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 6 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 6 | return counter_vector; | 133 | 6 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE17get_remain_vectorEv Line | Count | Source | 125 | 4 | const { | 126 | 4 | std::vector<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>> counter_vector; | 127 | 36 | for (auto it : counter_map) { | 128 | 36 | counter_vector.emplace_back(it.second, it.first); | 129 | 36 | } | 130 | 4 | std::sort(counter_vector.begin(), counter_vector.end(), | 131 | 4 | std::greater<std::pair<uint64_t, typename PrimitiveTypeTraits<T>::CppType>>()); | 132 | 4 | return counter_vector; | 133 | 4 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE17get_remain_vectorEv Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE17get_remain_vectorEv Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE17get_remain_vectorEv |
134 | | |
135 | 740 | void write(BufferWritable& buf) const { |
136 | 740 | buf.write_binary(top_num); |
137 | 740 | buf.write_binary(capacity); |
138 | | |
139 | 740 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); |
140 | 740 | buf.write_binary(element_number); |
141 | | |
142 | 740 | auto counter_vector = get_remain_vector(); |
143 | | |
144 | 1.68k | for (auto i = 0; i < element_number; i++) { |
145 | 944 | auto element = counter_vector[i]; |
146 | 944 | buf.write_binary(element.second); |
147 | 944 | buf.write_binary(element.first); |
148 | 944 | } |
149 | 740 | } _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 411 | void write(BufferWritable& buf) const { | 136 | 411 | buf.write_binary(top_num); | 137 | 411 | buf.write_binary(capacity); | 138 | | | 139 | 411 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 411 | buf.write_binary(element_number); | 141 | | | 142 | 411 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 935 | for (auto i = 0; i < element_number; i++) { | 145 | 524 | auto element = counter_vector[i]; | 146 | 524 | buf.write_binary(element.second); | 147 | 524 | buf.write_binary(element.first); | 148 | 524 | } | 149 | 411 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE5writeERNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 2 | void write(BufferWritable& buf) const { | 136 | 2 | buf.write_binary(top_num); | 137 | 2 | buf.write_binary(capacity); | 138 | | | 139 | 2 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 2 | buf.write_binary(element_number); | 141 | | | 142 | 2 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 18 | for (auto i = 0; i < element_number; i++) { | 145 | 16 | auto element = counter_vector[i]; | 146 | 16 | buf.write_binary(element.second); | 147 | 16 | buf.write_binary(element.first); | 148 | 16 | } | 149 | 2 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 2 | void write(BufferWritable& buf) const { | 136 | 2 | buf.write_binary(top_num); | 137 | 2 | buf.write_binary(capacity); | 138 | | | 139 | 2 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 2 | buf.write_binary(element_number); | 141 | | | 142 | 2 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 8 | for (auto i = 0; i < element_number; i++) { | 145 | 6 | auto element = counter_vector[i]; | 146 | 6 | buf.write_binary(element.second); | 147 | 6 | buf.write_binary(element.first); | 148 | 6 | } | 149 | 2 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE5writeERNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 1 | void write(BufferWritable& buf) const { | 136 | 1 | buf.write_binary(top_num); | 137 | 1 | buf.write_binary(capacity); | 138 | | | 139 | 1 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 1 | buf.write_binary(element_number); | 141 | | | 142 | 1 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 4 | for (auto i = 0; i < element_number; i++) { | 145 | 3 | auto element = counter_vector[i]; | 146 | 3 | buf.write_binary(element.second); | 147 | 3 | buf.write_binary(element.first); | 148 | 3 | } | 149 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE5writeERNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 319 | void write(BufferWritable& buf) const { | 136 | 319 | buf.write_binary(top_num); | 137 | 319 | buf.write_binary(capacity); | 138 | | | 139 | 319 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 319 | buf.write_binary(element_number); | 141 | | | 142 | 319 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 673 | for (auto i = 0; i < element_number; i++) { | 145 | 354 | auto element = counter_vector[i]; | 146 | 354 | buf.write_binary(element.second); | 147 | 354 | buf.write_binary(element.first); | 148 | 354 | } | 149 | 319 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 3 | void write(BufferWritable& buf) const { | 136 | 3 | buf.write_binary(top_num); | 137 | 3 | buf.write_binary(capacity); | 138 | | | 139 | 3 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 3 | buf.write_binary(element_number); | 141 | | | 142 | 3 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 26 | for (auto i = 0; i < element_number; i++) { | 145 | 23 | auto element = counter_vector[i]; | 146 | 23 | buf.write_binary(element.second); | 147 | 23 | buf.write_binary(element.first); | 148 | 23 | } | 149 | 3 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE5writeERNS_14BufferWritableE Line | Count | Source | 135 | 2 | void write(BufferWritable& buf) const { | 136 | 2 | buf.write_binary(top_num); | 137 | 2 | buf.write_binary(capacity); | 138 | | | 139 | 2 | uint64_t element_number = std::min(capacity, (uint64_t)counter_map.size()); | 140 | 2 | buf.write_binary(element_number); | 141 | | | 142 | 2 | auto counter_vector = get_remain_vector(); | 143 | | | 144 | 20 | for (auto i = 0; i < element_number; i++) { | 145 | 18 | auto element = counter_vector[i]; | 146 | 18 | buf.write_binary(element.second); | 147 | 18 | buf.write_binary(element.first); | 148 | 18 | } | 149 | 2 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE5writeERNS_14BufferWritableE |
150 | | |
151 | 623 | void read(BufferReadable& buf) { |
152 | 623 | buf.read_binary(top_num); |
153 | 623 | buf.read_binary(capacity); |
154 | | |
155 | 623 | uint64_t element_number = 0; |
156 | 623 | buf.read_binary(element_number); |
157 | | |
158 | 623 | counter_map.clear(); |
159 | 623 | std::pair<DataType, uint64_t> element; |
160 | 1.44k | for (auto i = 0; i < element_number; i++) { |
161 | 821 | buf.read_binary(element.first); |
162 | 821 | buf.read_binary(element.second); |
163 | 821 | counter_map.insert(element); |
164 | 821 | } |
165 | 623 | } _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 372 | void read(BufferReadable& buf) { | 152 | 372 | buf.read_binary(top_num); | 153 | 372 | buf.read_binary(capacity); | 154 | | | 155 | 372 | uint64_t element_number = 0; | 156 | 372 | buf.read_binary(element_number); | 157 | | | 158 | 372 | counter_map.clear(); | 159 | 372 | std::pair<DataType, uint64_t> element; | 160 | 854 | for (auto i = 0; i < element_number; i++) { | 161 | 482 | buf.read_binary(element.first); | 162 | 482 | buf.read_binary(element.second); | 163 | 482 | counter_map.insert(element); | 164 | 482 | } | 165 | 372 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE4readERNS_14BufferReadableE _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 2 | void read(BufferReadable& buf) { | 152 | 2 | buf.read_binary(top_num); | 153 | 2 | buf.read_binary(capacity); | 154 | | | 155 | 2 | uint64_t element_number = 0; | 156 | 2 | buf.read_binary(element_number); | 157 | | | 158 | 2 | counter_map.clear(); | 159 | 2 | std::pair<DataType, uint64_t> element; | 160 | 18 | for (auto i = 0; i < element_number; i++) { | 161 | 16 | buf.read_binary(element.first); | 162 | 16 | buf.read_binary(element.second); | 163 | 16 | counter_map.insert(element); | 164 | 16 | } | 165 | 2 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 2 | void read(BufferReadable& buf) { | 152 | 2 | buf.read_binary(top_num); | 153 | 2 | buf.read_binary(capacity); | 154 | | | 155 | 2 | uint64_t element_number = 0; | 156 | 2 | buf.read_binary(element_number); | 157 | | | 158 | 2 | counter_map.clear(); | 159 | 2 | std::pair<DataType, uint64_t> element; | 160 | 8 | for (auto i = 0; i < element_number; i++) { | 161 | 6 | buf.read_binary(element.first); | 162 | 6 | buf.read_binary(element.second); | 163 | 6 | counter_map.insert(element); | 164 | 6 | } | 165 | 2 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE4readERNS_14BufferReadableE _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 1 | void read(BufferReadable& buf) { | 152 | 1 | buf.read_binary(top_num); | 153 | 1 | buf.read_binary(capacity); | 154 | | | 155 | 1 | uint64_t element_number = 0; | 156 | 1 | buf.read_binary(element_number); | 157 | | | 158 | 1 | counter_map.clear(); | 159 | 1 | std::pair<DataType, uint64_t> element; | 160 | 4 | for (auto i = 0; i < element_number; i++) { | 161 | 3 | buf.read_binary(element.first); | 162 | 3 | buf.read_binary(element.second); | 163 | 3 | counter_map.insert(element); | 164 | 3 | } | 165 | 1 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE4readERNS_14BufferReadableE _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 241 | void read(BufferReadable& buf) { | 152 | 241 | buf.read_binary(top_num); | 153 | 241 | buf.read_binary(capacity); | 154 | | | 155 | 241 | uint64_t element_number = 0; | 156 | 241 | buf.read_binary(element_number); | 157 | | | 158 | 241 | counter_map.clear(); | 159 | 241 | std::pair<DataType, uint64_t> element; | 160 | 514 | for (auto i = 0; i < element_number; i++) { | 161 | 273 | buf.read_binary(element.first); | 162 | 273 | buf.read_binary(element.second); | 163 | 273 | counter_map.insert(element); | 164 | 273 | } | 165 | 241 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 3 | void read(BufferReadable& buf) { | 152 | 3 | buf.read_binary(top_num); | 153 | 3 | buf.read_binary(capacity); | 154 | | | 155 | 3 | uint64_t element_number = 0; | 156 | 3 | buf.read_binary(element_number); | 157 | | | 158 | 3 | counter_map.clear(); | 159 | 3 | std::pair<DataType, uint64_t> element; | 160 | 26 | for (auto i = 0; i < element_number; i++) { | 161 | 23 | buf.read_binary(element.first); | 162 | 23 | buf.read_binary(element.second); | 163 | 23 | counter_map.insert(element); | 164 | 23 | } | 165 | 3 | } |
_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE4readERNS_14BufferReadableE Line | Count | Source | 151 | 2 | void read(BufferReadable& buf) { | 152 | 2 | buf.read_binary(top_num); | 153 | 2 | buf.read_binary(capacity); | 154 | | | 155 | 2 | uint64_t element_number = 0; | 156 | 2 | buf.read_binary(element_number); | 157 | | | 158 | 2 | counter_map.clear(); | 159 | 2 | std::pair<DataType, uint64_t> element; | 160 | 20 | for (auto i = 0; i < element_number; i++) { | 161 | 18 | buf.read_binary(element.first); | 162 | 18 | buf.read_binary(element.second); | 163 | 18 | counter_map.insert(element); | 164 | 18 | } | 165 | 2 | } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE4readERNS_14BufferReadableE |
166 | | |
167 | 198 | std::string get() const { |
168 | 198 | auto counter_vector = get_remain_vector(); |
169 | | |
170 | 198 | rapidjson::StringBuffer buffer; |
171 | 198 | rapidjson::Writer<rapidjson::StringBuffer> writer(buffer); |
172 | | |
173 | 198 | writer.StartObject(); |
174 | 533 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { |
175 | 335 | const auto& element = counter_vector[i]; |
176 | 335 | writer.Key(element.second.c_str()); |
177 | 335 | writer.Uint64(element.first); |
178 | 335 | } |
179 | 198 | writer.EndObject(); |
180 | | |
181 | 198 | return buffer.GetString(); |
182 | 198 | } |
183 | | |
184 | 96 | void insert_result_into(IColumn& to) const { |
185 | 96 | auto counter_vector = get_remain_vector(); |
186 | 296 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { |
187 | 200 | const auto& element = counter_vector[i]; |
188 | 200 | if constexpr (is_string_type(T)) { |
189 | 42 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( |
190 | 42 | element.second.c_str(), element.second.length()); |
191 | 158 | } else { |
192 | 158 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( |
193 | 158 | element.second); |
194 | 158 | } |
195 | 200 | } |
196 | 96 | } Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE18insert_result_intoERNS_7IColumnE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 2 | void insert_result_into(IColumn& to) const { | 185 | 2 | auto counter_vector = get_remain_vector(); | 186 | 8 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 6 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 6 | } else { | 192 | 6 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 6 | element.second); | 194 | 6 | } | 195 | 6 | } | 196 | 2 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 18 | void insert_result_into(IColumn& to) const { | 185 | 18 | auto counter_vector = get_remain_vector(); | 186 | 52 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 34 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 34 | } else { | 192 | 34 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 34 | element.second); | 194 | 34 | } | 195 | 34 | } | 196 | 18 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE18insert_result_intoERNS_7IColumnE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 16 | void insert_result_into(IColumn& to) const { | 185 | 16 | auto counter_vector = get_remain_vector(); | 186 | 67 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 51 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 51 | } else { | 192 | 51 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 51 | element.second); | 194 | 51 | } | 195 | 51 | } | 196 | 16 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE18insert_result_intoERNS_7IColumnE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 18 | void insert_result_into(IColumn& to) const { | 185 | 18 | auto counter_vector = get_remain_vector(); | 186 | 71 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 53 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 53 | } else { | 192 | 53 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 53 | element.second); | 194 | 53 | } | 195 | 53 | } | 196 | 18 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE18insert_result_intoERNS_7IColumnE _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 37 | void insert_result_into(IColumn& to) const { | 185 | 37 | auto counter_vector = get_remain_vector(); | 186 | 79 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 42 | const auto& element = counter_vector[i]; | 188 | 42 | if constexpr (is_string_type(T)) { | 189 | 42 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | 42 | element.second.c_str(), element.second.length()); | 191 | | } else { | 192 | | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | | element.second); | 194 | | } | 195 | 42 | } | 196 | 37 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 3 | void insert_result_into(IColumn& to) const { | 185 | 3 | auto counter_vector = get_remain_vector(); | 186 | 11 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 8 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 8 | } else { | 192 | 8 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 8 | element.second); | 194 | 8 | } | 195 | 8 | } | 196 | 3 | } |
_ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 184 | 2 | void insert_result_into(IColumn& to) const { | 185 | 2 | auto counter_vector = get_remain_vector(); | 186 | 8 | for (int i = 0; i < std::min((int)counter_vector.size(), top_num); i++) { | 187 | 6 | const auto& element = counter_vector[i]; | 188 | | if constexpr (is_string_type(T)) { | 189 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 190 | | element.second.c_str(), element.second.length()); | 191 | 6 | } else { | 192 | 6 | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( | 193 | 6 | element.second); | 194 | 6 | } | 195 | 6 | } | 196 | 2 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE18insert_result_intoERNS_7IColumnE |
197 | | |
198 | 114 | void reset() { counter_map.clear(); }_ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE23EE5resetEv Line | Count | Source | 198 | 38 | void reset() { counter_map.clear(); } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE3EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE4EE5resetEv _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE5EE5resetEv Line | Count | Source | 198 | 18 | void reset() { counter_map.clear(); } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE6EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE7EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE8EE5resetEv _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE9EE5resetEv Line | Count | Source | 198 | 3 | void reset() { counter_map.clear(); } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE28EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE29EE5resetEv _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE30EE5resetEv Line | Count | Source | 198 | 3 | void reset() { counter_map.clear(); } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE35EE5resetEv _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE10EE5resetEv Line | Count | Source | 198 | 52 | void reset() { counter_map.clear(); } |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE25EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE26EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE42EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE36EE5resetEv Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNDataILNS_13PrimitiveTypeE37EE5resetEv |
199 | | |
200 | | int top_num = 0; |
201 | | uint64_t capacity = 0; |
202 | | flat_hash_map<DataType, uint64_t> counter_map; |
203 | | }; |
204 | | |
205 | | struct AggregateFunctionTopNImplInt { |
206 | | using Data = AggregateFunctionTopNData<TYPE_STRING>; |
207 | 4.50k | static void add(Data& __restrict place, const IColumn** columns, size_t row_num) { |
208 | 4.50k | place.set_paramenters( |
209 | 4.50k | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
210 | 4.50k | ->get_element(row_num)); |
211 | 4.50k | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) |
212 | 4.50k | .get_data_at(row_num)); |
213 | 4.50k | } |
214 | | }; |
215 | | |
216 | | struct AggregateFunctionTopNImplIntInt { |
217 | | using Data = AggregateFunctionTopNData<TYPE_STRING>; |
218 | 250 | static void add(Data& __restrict place, const IColumn** columns, size_t row_num) { |
219 | 250 | place.set_paramenters( |
220 | 250 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
221 | 250 | ->get_element(row_num), |
222 | 250 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) |
223 | 250 | ->get_element(row_num)); |
224 | 250 | place.add(assert_cast<const ColumnString&>(*columns[0]).get_data_at(row_num)); |
225 | 250 | } |
226 | | }; |
227 | | |
228 | | //for topn_array agg |
229 | | template <PrimitiveType T, bool has_default_param> |
230 | | struct AggregateFunctionTopNImplArray { |
231 | | using Data = AggregateFunctionTopNData<T>; |
232 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
233 | 31 | static String get_name() { return "topn_array"; }Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EE8get_nameB5cxx11Ev _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 233 | 1 | static String get_name() { return "topn_array"; } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EE8get_nameB5cxx11Ev _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 233 | 10 | static String get_name() { return "topn_array"; } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EE8get_nameB5cxx11Ev _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 233 | 20 | static String get_name() { return "topn_array"; } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EE8get_nameB5cxx11Ev |
234 | | static void add(AggregateFunctionTopNData<T>& __restrict place, const IColumn** columns, |
235 | 284 | size_t row_num) { |
236 | 284 | if constexpr (has_default_param) { |
237 | 63 | place.set_paramenters( |
238 | 63 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
239 | 63 | ->get_element(row_num), |
240 | 63 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) |
241 | 63 | ->get_element(row_num)); |
242 | | |
243 | 221 | } else { |
244 | 221 | place.set_paramenters( |
245 | 221 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
246 | 221 | ->get_element(row_num)); |
247 | 221 | } |
248 | 284 | if constexpr (is_string_type(T)) { |
249 | 168 | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) |
250 | 168 | .get_data_at(row_num)); |
251 | 168 | } else { |
252 | 116 | typename PrimitiveTypeTraits<T>::CppType val = |
253 | 116 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) |
254 | 116 | .get_data()[row_num]; |
255 | 116 | place.add(val); |
256 | 116 | } |
257 | 284 | } Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_3EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_4EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_5EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 6 | size_t row_num) { | 236 | 6 | if constexpr (has_default_param) { | 237 | 6 | place.set_paramenters( | 238 | 6 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | 6 | ->get_element(row_num), | 240 | 6 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | 6 | ->get_element(row_num)); | 242 | | | 243 | | } else { | 244 | | place.set_paramenters( | 245 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | | ->get_element(row_num)); | 247 | | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 6 | } else { | 252 | 6 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 6 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 6 | .get_data()[row_num]; | 255 | 6 | place.add(val); | 256 | 6 | } | 257 | 6 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_6EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_7EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_8EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_9EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_28EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_29EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_30EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 6 | size_t row_num) { | 236 | 6 | if constexpr (has_default_param) { | 237 | 6 | place.set_paramenters( | 238 | 6 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | 6 | ->get_element(row_num), | 240 | 6 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | 6 | ->get_element(row_num)); | 242 | | | 243 | | } else { | 244 | | place.set_paramenters( | 245 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | | ->get_element(row_num)); | 247 | | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 6 | } else { | 252 | 6 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 6 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 6 | .get_data()[row_num]; | 255 | 6 | place.add(val); | 256 | 6 | } | 257 | 6 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_35EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_10EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 15 | size_t row_num) { | 236 | 15 | if constexpr (has_default_param) { | 237 | 15 | place.set_paramenters( | 238 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | 15 | ->get_element(row_num), | 240 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | 15 | ->get_element(row_num)); | 242 | | | 243 | | } else { | 244 | | place.set_paramenters( | 245 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | | ->get_element(row_num)); | 247 | | } | 248 | 15 | if constexpr (is_string_type(T)) { | 249 | 15 | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | 15 | .get_data_at(row_num)); | 251 | | } else { | 252 | | typename PrimitiveTypeTraits<T>::CppType val = | 253 | | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | | .get_data()[row_num]; | 255 | | place.add(val); | 256 | | } | 257 | 15 | } |
_ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_25EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 21 | size_t row_num) { | 236 | 21 | if constexpr (has_default_param) { | 237 | 21 | place.set_paramenters( | 238 | 21 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | 21 | ->get_element(row_num), | 240 | 21 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | 21 | ->get_element(row_num)); | 242 | | | 243 | | } else { | 244 | | place.set_paramenters( | 245 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | | ->get_element(row_num)); | 247 | | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 21 | } else { | 252 | 21 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 21 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 21 | .get_data()[row_num]; | 255 | 21 | place.add(val); | 256 | 21 | } | 257 | 21 | } |
_ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_26EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 15 | size_t row_num) { | 236 | 15 | if constexpr (has_default_param) { | 237 | 15 | place.set_paramenters( | 238 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | 15 | ->get_element(row_num), | 240 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | 15 | ->get_element(row_num)); | 242 | | | 243 | | } else { | 244 | | place.set_paramenters( | 245 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | | ->get_element(row_num)); | 247 | | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 15 | } else { | 252 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 15 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 15 | .get_data()[row_num]; | 255 | 15 | place.add(val); | 256 | 15 | } | 257 | 15 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_42EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_36EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_37EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_3EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_4EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_5EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 21 | size_t row_num) { | 236 | | if constexpr (has_default_param) { | 237 | | place.set_paramenters( | 238 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | | ->get_element(row_num), | 240 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | | ->get_element(row_num)); | 242 | | | 243 | 21 | } else { | 244 | 21 | place.set_paramenters( | 245 | 21 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | 21 | ->get_element(row_num)); | 247 | 21 | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 21 | } else { | 252 | 21 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 21 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 21 | .get_data()[row_num]; | 255 | 21 | place.add(val); | 256 | 21 | } | 257 | 21 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_6EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_7EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_8EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_9EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_28EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_29EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_30EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 17 | size_t row_num) { | 236 | | if constexpr (has_default_param) { | 237 | | place.set_paramenters( | 238 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | | ->get_element(row_num), | 240 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | | ->get_element(row_num)); | 242 | | | 243 | 17 | } else { | 244 | 17 | place.set_paramenters( | 245 | 17 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | 17 | ->get_element(row_num)); | 247 | 17 | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 17 | } else { | 252 | 17 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 17 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 17 | .get_data()[row_num]; | 255 | 17 | place.add(val); | 256 | 17 | } | 257 | 17 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_35EEEPPKNS_7IColumnEm _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_10EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 153 | size_t row_num) { | 236 | | if constexpr (has_default_param) { | 237 | | place.set_paramenters( | 238 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | | ->get_element(row_num), | 240 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | | ->get_element(row_num)); | 242 | | | 243 | 153 | } else { | 244 | 153 | place.set_paramenters( | 245 | 153 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | 153 | ->get_element(row_num)); | 247 | 153 | } | 248 | 153 | if constexpr (is_string_type(T)) { | 249 | 153 | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | 153 | .get_data_at(row_num)); | 251 | | } else { | 252 | | typename PrimitiveTypeTraits<T>::CppType val = | 253 | | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | | .get_data()[row_num]; | 255 | | place.add(val); | 256 | | } | 257 | 153 | } |
_ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_25EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 15 | size_t row_num) { | 236 | | if constexpr (has_default_param) { | 237 | | place.set_paramenters( | 238 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | | ->get_element(row_num), | 240 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | | ->get_element(row_num)); | 242 | | | 243 | 15 | } else { | 244 | 15 | place.set_paramenters( | 245 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | 15 | ->get_element(row_num)); | 247 | 15 | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 15 | } else { | 252 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 15 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 15 | .get_data()[row_num]; | 255 | 15 | place.add(val); | 256 | 15 | } | 257 | 15 | } |
_ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_26EEEPPKNS_7IColumnEm Line | Count | Source | 235 | 15 | size_t row_num) { | 236 | | if constexpr (has_default_param) { | 237 | | place.set_paramenters( | 238 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 239 | | ->get_element(row_num), | 240 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 241 | | ->get_element(row_num)); | 242 | | | 243 | 15 | } else { | 244 | 15 | place.set_paramenters( | 245 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 246 | 15 | ->get_element(row_num)); | 247 | 15 | } | 248 | | if constexpr (is_string_type(T)) { | 249 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 250 | | .get_data_at(row_num)); | 251 | 15 | } else { | 252 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 253 | 15 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 254 | 15 | .get_data()[row_num]; | 255 | 15 | place.add(val); | 256 | 15 | } | 257 | 15 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_42EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_36EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_37EEEPPKNS_7IColumnEm |
258 | | }; |
259 | | |
260 | | //for topn_weighted agg |
261 | | template <PrimitiveType T, bool has_default_param> |
262 | | struct AggregateFunctionTopNImplWeight { |
263 | | using Data = AggregateFunctionTopNData<T>; |
264 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
265 | 30 | static String get_name() { return "topn_weighted"; }Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EE8get_nameB5cxx11Ev _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 265 | 1 | static String get_name() { return "topn_weighted"; } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EE8get_nameB5cxx11Ev _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 265 | 9 | static String get_name() { return "topn_weighted"; } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EE8get_nameB5cxx11Ev _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EE8get_nameB5cxx11Ev Line | Count | Source | 265 | 20 | static String get_name() { return "topn_weighted"; } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EE8get_nameB5cxx11Ev |
266 | | static void add(AggregateFunctionTopNData<T>& __restrict place, const IColumn** columns, |
267 | 202 | size_t row_num) { |
268 | 202 | if constexpr (has_default_param) { |
269 | 15 | place.set_paramenters( |
270 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) |
271 | 15 | ->get_element(row_num), |
272 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) |
273 | 15 | ->get_element(row_num)); |
274 | | |
275 | 187 | } else { |
276 | 187 | place.set_paramenters( |
277 | 187 | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); |
278 | 187 | } |
279 | 202 | if constexpr (is_string_type(T)) { |
280 | 142 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) |
281 | 142 | .get_data()[row_num]; |
282 | 142 | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) |
283 | 142 | .get_data_at(row_num), |
284 | 142 | weight); |
285 | 142 | } else { |
286 | 60 | typename PrimitiveTypeTraits<T>::CppType val = |
287 | 60 | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, |
288 | 60 | TypeCheckOnRelease::DISABLE>(*columns[0]) |
289 | 60 | .get_data()[row_num]; |
290 | 60 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) |
291 | 60 | .get_data()[row_num]; |
292 | 60 | place.add(val, weight); |
293 | 60 | } |
294 | 202 | } Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_3EEEPPKNS_7IColumnEm _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_4EEEPPKNS_7IColumnEm Line | Count | Source | 267 | 15 | size_t row_num) { | 268 | 15 | if constexpr (has_default_param) { | 269 | 15 | place.set_paramenters( | 270 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 271 | 15 | ->get_element(row_num), | 272 | 15 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) | 273 | 15 | ->get_element(row_num)); | 274 | | | 275 | | } else { | 276 | | place.set_paramenters( | 277 | | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); | 278 | | } | 279 | | if constexpr (is_string_type(T)) { | 280 | | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 281 | | .get_data()[row_num]; | 282 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 283 | | .get_data_at(row_num), | 284 | | weight); | 285 | 15 | } else { | 286 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 287 | 15 | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, | 288 | 15 | TypeCheckOnRelease::DISABLE>(*columns[0]) | 289 | 15 | .get_data()[row_num]; | 290 | 15 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 291 | 15 | .get_data()[row_num]; | 292 | 15 | place.add(val, weight); | 293 | 15 | } | 294 | 15 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_5EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_6EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_7EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_8EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_9EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_28EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_29EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_30EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_35EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_10EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_25EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_26EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_42EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_36EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EE3addERNS_25AggregateFunctionTopNDataILS1_37EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_3EEEPPKNS_7IColumnEm _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_4EEEPPKNS_7IColumnEm Line | Count | Source | 267 | 15 | size_t row_num) { | 268 | | if constexpr (has_default_param) { | 269 | | place.set_paramenters( | 270 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 271 | | ->get_element(row_num), | 272 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) | 273 | | ->get_element(row_num)); | 274 | | | 275 | 15 | } else { | 276 | 15 | place.set_paramenters( | 277 | 15 | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); | 278 | 15 | } | 279 | | if constexpr (is_string_type(T)) { | 280 | | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 281 | | .get_data()[row_num]; | 282 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 283 | | .get_data_at(row_num), | 284 | | weight); | 285 | 15 | } else { | 286 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 287 | 15 | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, | 288 | 15 | TypeCheckOnRelease::DISABLE>(*columns[0]) | 289 | 15 | .get_data()[row_num]; | 290 | 15 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 291 | 15 | .get_data()[row_num]; | 292 | 15 | place.add(val, weight); | 293 | 15 | } | 294 | 15 | } |
_ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_5EEEPPKNS_7IColumnEm Line | Count | Source | 267 | 15 | size_t row_num) { | 268 | | if constexpr (has_default_param) { | 269 | | place.set_paramenters( | 270 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 271 | | ->get_element(row_num), | 272 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) | 273 | | ->get_element(row_num)); | 274 | | | 275 | 15 | } else { | 276 | 15 | place.set_paramenters( | 277 | 15 | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); | 278 | 15 | } | 279 | | if constexpr (is_string_type(T)) { | 280 | | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 281 | | .get_data()[row_num]; | 282 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 283 | | .get_data_at(row_num), | 284 | | weight); | 285 | 15 | } else { | 286 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 287 | 15 | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, | 288 | 15 | TypeCheckOnRelease::DISABLE>(*columns[0]) | 289 | 15 | .get_data()[row_num]; | 290 | 15 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 291 | 15 | .get_data()[row_num]; | 292 | 15 | place.add(val, weight); | 293 | 15 | } | 294 | 15 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_6EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_7EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_8EEEPPKNS_7IColumnEm _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_9EEEPPKNS_7IColumnEm Line | Count | Source | 267 | 15 | size_t row_num) { | 268 | | if constexpr (has_default_param) { | 269 | | place.set_paramenters( | 270 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 271 | | ->get_element(row_num), | 272 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) | 273 | | ->get_element(row_num)); | 274 | | | 275 | 15 | } else { | 276 | 15 | place.set_paramenters( | 277 | 15 | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); | 278 | 15 | } | 279 | | if constexpr (is_string_type(T)) { | 280 | | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 281 | | .get_data()[row_num]; | 282 | | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 283 | | .get_data_at(row_num), | 284 | | weight); | 285 | 15 | } else { | 286 | 15 | typename PrimitiveTypeTraits<T>::CppType val = | 287 | 15 | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, | 288 | 15 | TypeCheckOnRelease::DISABLE>(*columns[0]) | 289 | 15 | .get_data()[row_num]; | 290 | 15 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 291 | 15 | .get_data()[row_num]; | 292 | 15 | place.add(val, weight); | 293 | 15 | } | 294 | 15 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_28EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_29EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_30EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_35EEEPPKNS_7IColumnEm _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_10EEEPPKNS_7IColumnEm Line | Count | Source | 267 | 142 | size_t row_num) { | 268 | | if constexpr (has_default_param) { | 269 | | place.set_paramenters( | 270 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[2]) | 271 | | ->get_element(row_num), | 272 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[3]) | 273 | | ->get_element(row_num)); | 274 | | | 275 | 142 | } else { | 276 | 142 | place.set_paramenters( | 277 | 142 | assert_cast<const ColumnInt32*>(columns[2])->get_element(row_num)); | 278 | 142 | } | 279 | 142 | if constexpr (is_string_type(T)) { | 280 | 142 | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 281 | 142 | .get_data()[row_num]; | 282 | 142 | place.add(assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 283 | 142 | .get_data_at(row_num), | 284 | 142 | weight); | 285 | | } else { | 286 | | typename PrimitiveTypeTraits<T>::CppType val = | 287 | | assert_cast<const typename PrimitiveTypeTraits<T>::ColumnType&, | 288 | | TypeCheckOnRelease::DISABLE>(*columns[0]) | 289 | | .get_data()[row_num]; | 290 | | auto weight = assert_cast<const ColumnInt64&, TypeCheckOnRelease::DISABLE>(*columns[1]) | 291 | | .get_data()[row_num]; | 292 | | place.add(val, weight); | 293 | | } | 294 | 142 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_25EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_26EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_42EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_36EEEPPKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EE3addERNS_25AggregateFunctionTopNDataILS1_37EEEPPKNS_7IColumnEm |
295 | | }; |
296 | | |
297 | | //base function |
298 | | template <typename Impl> |
299 | | class AggregateFunctionTopNBase |
300 | | : public IAggregateFunctionDataHelper<typename Impl::Data, |
301 | | AggregateFunctionTopNBase<Impl>> { |
302 | | public: |
303 | | AggregateFunctionTopNBase(const DataTypes& argument_types_) |
304 | 882 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( |
305 | 882 | argument_types_) {}_ZN5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 304 | 299 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 299 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 304 | 41 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 41 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 4 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 4 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 3 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 3 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 1 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 1 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 258 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 258 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
_ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 1 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 1 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 2 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 2 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 304 | 257 | : IAggregateFunctionDataHelper<typename Impl::Data, AggregateFunctionTopNBase<Impl>>( | 305 | 257 | argument_types_) {} |
Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE |
306 | | |
307 | | void add(AggregateDataPtr __restrict place, const IColumn** columns, ssize_t row_num, |
308 | 5.24k | Arena&) const override { |
309 | 5.24k | Impl::add(this->data(place), columns, row_num); |
310 | 5.24k | } _ZNK5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 4.50k | Arena&) const override { | 309 | 4.50k | Impl::add(this->data(place), columns, row_num); | 310 | 4.50k | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 250 | Arena&) const override { | 309 | 250 | Impl::add(this->data(place), columns, row_num); | 310 | 250 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 6 | Arena&) const override { | 309 | 6 | Impl::add(this->data(place), columns, row_num); | 310 | 6 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 6 | Arena&) const override { | 309 | 6 | Impl::add(this->data(place), columns, row_num); | 310 | 6 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 21 | Arena&) const override { | 309 | 21 | Impl::add(this->data(place), columns, row_num); | 310 | 21 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 21 | Arena&) const override { | 309 | 21 | Impl::add(this->data(place), columns, row_num); | 310 | 21 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 17 | Arena&) const override { | 309 | 17 | Impl::add(this->data(place), columns, row_num); | 310 | 17 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 153 | Arena&) const override { | 309 | 153 | Impl::add(this->data(place), columns, row_num); | 310 | 153 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 15 | Arena&) const override { | 309 | 15 | Impl::add(this->data(place), columns, row_num); | 310 | 15 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 308 | 142 | Arena&) const override { | 309 | 142 | Impl::add(this->data(place), columns, row_num); | 310 | 142 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE3addEPcPPKNS_7IColumnElRNS_5ArenaE |
311 | | |
312 | 114 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); }_ZNK5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEE5resetEPc Line | Count | Source | 312 | 38 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE5resetEPc Line | Count | Source | 312 | 9 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE5resetEPc Line | Count | Source | 312 | 3 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE5resetEPc Line | Count | Source | 312 | 26 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE5resetEPc Line | Count | Source | 312 | 9 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE5resetEPc Line | Count | Source | 312 | 3 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE5resetEPc _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE5resetEPc Line | Count | Source | 312 | 26 | void reset(AggregateDataPtr __restrict place) const override { this->data(place).reset(); } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE5resetEPc Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE5resetEPc |
313 | | |
314 | | void merge(AggregateDataPtr __restrict place, ConstAggregateDataPtr rhs, |
315 | 623 | Arena&) const override { |
316 | 623 | this->data(place).merge(this->data(rhs)); |
317 | 623 | } _ZNK5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 247 | Arena&) const override { | 316 | 247 | this->data(place).merge(this->data(rhs)); | 317 | 247 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 125 | Arena&) const override { | 316 | 125 | this->data(place).merge(this->data(rhs)); | 317 | 125 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 2 | Arena&) const override { | 316 | 2 | this->data(place).merge(this->data(rhs)); | 317 | 2 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 124 | Arena&) const override { | 316 | 124 | this->data(place).merge(this->data(rhs)); | 317 | 124 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 1 | Arena&) const override { | 316 | 1 | this->data(place).merge(this->data(rhs)); | 317 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE5mergeEPcPKcRNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 315 | 116 | Arena&) const override { | 316 | 116 | this->data(place).merge(this->data(rhs)); | 317 | 116 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE5mergeEPcPKcRNS_5ArenaE |
318 | | |
319 | 740 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { |
320 | 740 | this->data(place).write(buf); |
321 | 740 | } _ZNK5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 286 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 286 | this->data(place).write(buf); | 321 | 286 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 125 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 125 | this->data(place).write(buf); | 321 | 125 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 2 | this->data(place).write(buf); | 321 | 2 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 163 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 163 | this->data(place).write(buf); | 321 | 163 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 1 | this->data(place).write(buf); | 321 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE9serializeEPKcRNS_14BufferWritableE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 319 | 155 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 320 | 155 | this->data(place).write(buf); | 321 | 155 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE9serializeEPKcRNS_14BufferWritableE |
322 | | |
323 | | void deserialize(AggregateDataPtr __restrict place, BufferReadable& buf, |
324 | 623 | Arena&) const override { |
325 | 623 | this->data(place).read(buf); |
326 | 623 | } _ZNK5doris25AggregateFunctionTopNBaseINS_28AggregateFunctionTopNImplIntEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 247 | Arena&) const override { | 325 | 247 | this->data(place).read(buf); | 326 | 247 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplIntIntEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 125 | Arena&) const override { | 325 | 125 | this->data(place).read(buf); | 326 | 125 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 2 | Arena&) const override { | 325 | 2 | this->data(place).read(buf); | 326 | 2 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 124 | Arena&) const override { | 325 | 124 | this->data(place).read(buf); | 326 | 124 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
_ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 1 | Arena&) const override { | 325 | 1 | this->data(place).read(buf); | 326 | 1 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 324 | 116 | Arena&) const override { | 325 | 116 | this->data(place).read(buf); | 326 | 116 | } |
Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris25AggregateFunctionTopNBaseINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE |
327 | | }; |
328 | | |
329 | | //topn function return string |
330 | | template <typename Impl> |
331 | | class AggregateFunctionTopN final : public AggregateFunctionTopNBase<Impl>, |
332 | | MultiExpression, |
333 | | NullableAggregateFunction { |
334 | | public: |
335 | | AggregateFunctionTopN(const DataTypes& argument_types_) |
336 | 340 | : AggregateFunctionTopNBase<Impl>(argument_types_) {}_ZN5doris21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 336 | 299 | : AggregateFunctionTopNBase<Impl>(argument_types_) {} |
_ZN5doris21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 336 | 41 | : AggregateFunctionTopNBase<Impl>(argument_types_) {} |
|
337 | | |
338 | 31 | String get_name() const override { return "topn"; }_ZNK5doris21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEE8get_nameB5cxx11Ev Line | Count | Source | 338 | 31 | String get_name() const override { return "topn"; } |
Unexecuted instantiation: _ZNK5doris21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEE8get_nameB5cxx11Ev |
339 | | |
340 | 171 | DataTypePtr get_return_type() const override { return std::make_shared<DataTypeString>(); }_ZNK5doris21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEE15get_return_typeEv Line | Count | Source | 340 | 101 | DataTypePtr get_return_type() const override { return std::make_shared<DataTypeString>(); } |
_ZNK5doris21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEE15get_return_typeEv Line | Count | Source | 340 | 70 | DataTypePtr get_return_type() const override { return std::make_shared<DataTypeString>(); } |
|
341 | | |
342 | 197 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
343 | 197 | std::string result = this->data(place).get(); |
344 | 197 | assert_cast<ColumnString&>(to).insert_data(result.c_str(), result.length()); |
345 | 197 | } _ZNK5doris21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 342 | 119 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 343 | 119 | std::string result = this->data(place).get(); | 344 | 119 | assert_cast<ColumnString&>(to).insert_data(result.c_str(), result.length()); | 345 | 119 | } |
_ZNK5doris21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 342 | 78 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 343 | 78 | std::string result = this->data(place).get(); | 344 | 78 | assert_cast<ColumnString&>(to).insert_data(result.c_str(), result.length()); | 345 | 78 | } |
|
346 | | }; |
347 | | |
348 | | //topn function return array |
349 | | template <typename Impl> |
350 | | class AggregateFunctionTopNArray final : public AggregateFunctionTopNBase<Impl>, |
351 | | MultiExpression, |
352 | | NullableAggregateFunction { |
353 | | public: |
354 | | AggregateFunctionTopNArray(const DataTypes& argument_types_) |
355 | 542 | : AggregateFunctionTopNBase<Impl>(argument_types_), |
356 | 542 | _argument_type(argument_types_[0]) {}Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 4 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 4 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 3 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 3 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 1 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 1 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 258 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 258 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 1 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 1 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 2 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 355 | 257 | : AggregateFunctionTopNBase<Impl>(argument_types_), | 356 | 257 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE |
357 | | |
358 | 61 | String get_name() const override { return Impl::get_name(); }Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 1 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 10 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 20 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 1 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 9 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE8get_nameB5cxx11Ev Line | Count | Source | 358 | 20 | String get_name() const override { return Impl::get_name(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE8get_nameB5cxx11Ev |
359 | | |
360 | 124 | DataTypePtr get_return_type() const override { |
361 | 124 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); |
362 | 124 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 8 | DataTypePtr get_return_type() const override { | 361 | 8 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 8 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 6 | DataTypePtr get_return_type() const override { | 361 | 6 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 6 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 11 | DataTypePtr get_return_type() const override { | 361 | 11 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 11 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 26 | DataTypePtr get_return_type() const override { | 361 | 26 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 26 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 4 | DataTypePtr get_return_type() const override { | 361 | 4 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 4 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 2 | DataTypePtr get_return_type() const override { | 361 | 2 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 2 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 13 | DataTypePtr get_return_type() const override { | 361 | 13 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 13 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE15get_return_typeEv _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE15get_return_typeEv Line | Count | Source | 360 | 26 | DataTypePtr get_return_type() const override { | 361 | 26 | return std::make_shared<DataTypeArray>(make_nullable(_argument_type)); | 362 | 26 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE15get_return_typeEv |
363 | | |
364 | 96 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
365 | 96 | auto& to_arr = assert_cast<ColumnArray&>(to); |
366 | 96 | auto& to_nested_col = to_arr.get_data(); |
367 | 96 | if (to_nested_col.is_nullable()) { |
368 | 96 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); |
369 | 96 | this->data(place).insert_result_into(col_null->get_nested_column()); |
370 | 96 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); |
371 | 96 | } else { |
372 | 0 | this->data(place).insert_result_into(to_nested_col); |
373 | 0 | } |
374 | 96 | to_arr.get_offsets().push_back(to_nested_col.size()); |
375 | 96 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 2 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 2 | auto& to_nested_col = to_arr.get_data(); | 367 | 2 | if (to_nested_col.is_nullable()) { | 368 | 2 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 2 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 2 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 9 | auto& to_nested_col = to_arr.get_data(); | 367 | 9 | if (to_nested_col.is_nullable()) { | 368 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 9 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 9 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 17 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 17 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 17 | auto& to_nested_col = to_arr.get_data(); | 367 | 17 | if (to_nested_col.is_nullable()) { | 368 | 17 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 17 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 17 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 17 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 17 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 17 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 18 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 18 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 18 | auto& to_nested_col = to_arr.get_data(); | 367 | 18 | if (to_nested_col.is_nullable()) { | 368 | 18 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 18 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 18 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 18 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 18 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 18 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 1 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 1 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 1 | auto& to_nested_col = to_arr.get_data(); | 367 | 1 | if (to_nested_col.is_nullable()) { | 368 | 1 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 1 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 1 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 1 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 1 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 1 | } |
_ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 8 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 8 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 8 | auto& to_nested_col = to_arr.get_data(); | 367 | 8 | if (to_nested_col.is_nullable()) { | 368 | 8 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 8 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 8 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 8 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 8 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 8 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 16 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 16 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 16 | auto& to_nested_col = to_arr.get_data(); | 367 | 16 | if (to_nested_col.is_nullable()) { | 368 | 16 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 16 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 16 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 16 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 16 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 16 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 364 | 18 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 365 | 18 | auto& to_arr = assert_cast<ColumnArray&>(to); | 366 | 18 | auto& to_nested_col = to_arr.get_data(); | 367 | 18 | if (to_nested_col.is_nullable()) { | 368 | 18 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 369 | 18 | this->data(place).insert_result_into(col_null->get_nested_column()); | 370 | 18 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 371 | 18 | } else { | 372 | 0 | this->data(place).insert_result_into(to_nested_col); | 373 | 0 | } | 374 | 18 | to_arr.get_offsets().push_back(to_nested_col.size()); | 375 | 18 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEE18insert_result_intoEPKcRNS_7IColumnE |
376 | | |
377 | | private: |
378 | | DataTypePtr _argument_type; |
379 | | }; |
380 | | |
381 | | } // namespace doris |