be/src/exprs/aggregate/aggregate_function_histogram.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 <map> |
21 | | #include <memory> |
22 | | #include <string> |
23 | | #include <utility> |
24 | | #include <vector> |
25 | | |
26 | | #include "common/exception.h" |
27 | | #include "common/status.h" |
28 | | #include "core/assert_cast.h" |
29 | | #include "core/column/column.h" |
30 | | #include "core/column/column_decimal.h" |
31 | | #include "core/column/column_string.h" |
32 | | #include "core/column/column_vector.h" |
33 | | #include "core/data_type/data_type_string.h" |
34 | | #include "core/string_ref.h" |
35 | | #include "core/types.h" |
36 | | #include "exec/common/histogram_helpers.hpp" |
37 | | #include "exprs/aggregate/aggregate_function.h" |
38 | | #include "exprs/aggregate/aggregate_function_simple_factory.h" |
39 | | |
40 | | namespace doris {} // namespace doris |
41 | | |
42 | | namespace doris { |
43 | | |
44 | | template <PrimitiveType T> |
45 | | struct AggregateFunctionHistogramData { |
46 | | static constexpr auto Ptype = T; |
47 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
48 | | const static size_t DEFAULT_BUCKET_NUM = 128; |
49 | | const static size_t BUCKET_NUM_INIT_VALUE = 0; |
50 | | |
51 | 3.80k | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; }Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE14set_parametersEm _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE14set_parametersEm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE14set_parametersEm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE14set_parametersEm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE14set_parametersEm _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE14set_parametersEm Line | Count | Source | 51 | 2.00k | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE14set_parametersEm Line | Count | Source | 51 | 200 | void set_parameters(size_t input_max_num_buckets) { max_num_buckets = input_max_num_buckets; } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE14set_parametersEm |
52 | | |
53 | 0 | void reset() { ordered_map.clear(); }Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE5resetEv Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE5resetEv |
54 | | |
55 | 2.00k | void add(const StringRef& value, const UInt64& number = 1) { |
56 | 2.00k | std::string data = value.to_string(); |
57 | 2.00k | auto it = ordered_map.find(data); |
58 | 2.00k | if (it != ordered_map.end()) { |
59 | 0 | it->second = it->second + number; |
60 | 2.00k | } else { |
61 | 2.00k | ordered_map.insert({data, number}); |
62 | 2.00k | } |
63 | 2.00k | } |
64 | | |
65 | 1.80k | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { |
66 | 1.80k | auto it = ordered_map.find(value); |
67 | 1.80k | if (it != ordered_map.end()) { |
68 | 0 | it->second = it->second + number; |
69 | 1.80k | } else { |
70 | 1.80k | ordered_map.insert({value, number}); |
71 | 1.80k | } |
72 | 1.80k | } Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE3addERKhRKm _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE3addERKaRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE3addERKsRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE3addERKiRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE3addERKlRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE3addERKnRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE3addERKfRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE3addERKdRKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE3addERKNS_7DecimalIiEERKm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE3addERKNS_7DecimalIlEERKm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE3addERKNS_12Decimal128V3ERKm Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE3addERKNS_7DecimalIN4wide7integerILm256EiEEEERKm _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE3addERKNS_11DateV2ValueINS_15DateV2ValueTypeEEERKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE3addERKNS_11DateV2ValueINS_19DateTimeV2ValueTypeEEERKm Line | Count | Source | 65 | 200 | void add(const typename PrimitiveTypeTraits<T>::CppType& value, const UInt64& number = 1) { | 66 | 200 | auto it = ordered_map.find(value); | 67 | 200 | if (it != ordered_map.end()) { | 68 | 0 | it->second = it->second + number; | 69 | 200 | } else { | 70 | 200 | ordered_map.insert({value, number}); | 71 | 200 | } | 72 | 200 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE3addERKNS_16TimestampTzValueERKm |
73 | | |
74 | 18 | void merge(const AggregateFunctionHistogramData& rhs) { |
75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null |
76 | | // we should discard this data, because histogram only fouce on the not-null data |
77 | 18 | if (!rhs.max_num_buckets) { |
78 | 8 | return; |
79 | 8 | } |
80 | | |
81 | 10 | max_num_buckets = rhs.max_num_buckets; |
82 | | |
83 | 1.90k | for (auto rhs_it : rhs.ordered_map) { |
84 | 1.90k | auto lhs_it = ordered_map.find(rhs_it.first); |
85 | 1.90k | if (lhs_it != ordered_map.end()) { |
86 | 1.90k | lhs_it->second += rhs_it.second; |
87 | 1.90k | } else { |
88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); |
89 | 0 | } |
90 | 1.90k | } |
91 | 10 | } Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE5mergeERKS2_ _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE5mergeERKS2_ _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE5mergeERKS2_ Line | Count | Source | 74 | 2 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 2 | if (!rhs.max_num_buckets) { | 78 | 1 | return; | 79 | 1 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 1.00k | for (auto rhs_it : rhs.ordered_map) { | 84 | 1.00k | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 1.00k | if (lhs_it != ordered_map.end()) { | 86 | 1.00k | lhs_it->second += rhs_it.second; | 87 | 1.00k | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 1.00k | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE5mergeERKS2_ Line | Count | Source | 74 | 1 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 1 | if (!rhs.max_num_buckets) { | 78 | 0 | return; | 79 | 0 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE5mergeERKS2_ Line | Count | Source | 74 | 1 | void merge(const AggregateFunctionHistogramData& rhs) { | 75 | | // if rhs.max_num_buckets == 0, it means the input block for serialization is all null | 76 | | // we should discard this data, because histogram only fouce on the not-null data | 77 | 1 | if (!rhs.max_num_buckets) { | 78 | 0 | return; | 79 | 0 | } | 80 | | | 81 | 1 | max_num_buckets = rhs.max_num_buckets; | 82 | | | 83 | 100 | for (auto rhs_it : rhs.ordered_map) { | 84 | 100 | auto lhs_it = ordered_map.find(rhs_it.first); | 85 | 100 | if (lhs_it != ordered_map.end()) { | 86 | 100 | lhs_it->second += rhs_it.second; | 87 | 100 | } else { | 88 | 0 | ordered_map.insert({rhs_it.first, rhs_it.second}); | 89 | 0 | } | 90 | 100 | } | 91 | 1 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE5mergeERKS2_ |
92 | | |
93 | 18 | void write(BufferWritable& buf) const { |
94 | 18 | buf.write_binary(max_num_buckets); |
95 | 18 | auto element_number = (size_t)ordered_map.size(); |
96 | 18 | buf.write_binary(element_number); |
97 | | |
98 | 18 | auto pair_vector = map_to_vector(); |
99 | | |
100 | 1.91k | for (auto i = 0; i < element_number; i++) { |
101 | 1.90k | auto element = pair_vector[i]; |
102 | 1.90k | buf.write_binary(element.second); |
103 | 1.90k | buf.write_binary(element.first); |
104 | 1.90k | } |
105 | 18 | } Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE5writeERNS_14BufferWritableE _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 102 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 2 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE5writeERNS_14BufferWritableE _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 2 | void write(BufferWritable& buf) const { | 94 | 2 | buf.write_binary(max_num_buckets); | 95 | 2 | auto element_number = (size_t)ordered_map.size(); | 96 | 2 | buf.write_binary(element_number); | 97 | | | 98 | 2 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 1.00k | for (auto i = 0; i < element_number; i++) { | 101 | 1.00k | auto element = pair_vector[i]; | 102 | 1.00k | buf.write_binary(element.second); | 103 | 1.00k | buf.write_binary(element.first); | 104 | 1.00k | } | 105 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 1 | void write(BufferWritable& buf) const { | 94 | 1 | buf.write_binary(max_num_buckets); | 95 | 1 | auto element_number = (size_t)ordered_map.size(); | 96 | 1 | buf.write_binary(element_number); | 97 | | | 98 | 1 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 101 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 1 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE5writeERNS_14BufferWritableE Line | Count | Source | 93 | 1 | void write(BufferWritable& buf) const { | 94 | 1 | buf.write_binary(max_num_buckets); | 95 | 1 | auto element_number = (size_t)ordered_map.size(); | 96 | 1 | buf.write_binary(element_number); | 97 | | | 98 | 1 | auto pair_vector = map_to_vector(); | 99 | | | 100 | 101 | for (auto i = 0; i < element_number; i++) { | 101 | 100 | auto element = pair_vector[i]; | 102 | 100 | buf.write_binary(element.second); | 103 | 100 | buf.write_binary(element.first); | 104 | 100 | } | 105 | 1 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE5writeERNS_14BufferWritableE |
106 | | |
107 | 18 | void read(BufferReadable& buf) { |
108 | 18 | buf.read_binary(max_num_buckets); |
109 | | |
110 | 18 | size_t element_number = 0; |
111 | 18 | buf.read_binary(element_number); |
112 | | |
113 | 18 | ordered_map.clear(); |
114 | 18 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; |
115 | 1.91k | for (auto i = 0; i < element_number; i++) { |
116 | 1.90k | buf.read_binary(element.first); |
117 | 1.90k | buf.read_binary(element.second); |
118 | 1.90k | ordered_map.insert(element); |
119 | 1.90k | } |
120 | 18 | } Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE4readERNS_14BufferReadableE _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 102 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 2 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE4readERNS_14BufferReadableE _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 2 | void read(BufferReadable& buf) { | 108 | 2 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 2 | size_t element_number = 0; | 111 | 2 | buf.read_binary(element_number); | 112 | | | 113 | 2 | ordered_map.clear(); | 114 | 2 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 1.00k | for (auto i = 0; i < element_number; i++) { | 116 | 1.00k | buf.read_binary(element.first); | 117 | 1.00k | buf.read_binary(element.second); | 118 | 1.00k | ordered_map.insert(element); | 119 | 1.00k | } | 120 | 2 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 1 | void read(BufferReadable& buf) { | 108 | 1 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 1 | size_t element_number = 0; | 111 | 1 | buf.read_binary(element_number); | 112 | | | 113 | 1 | ordered_map.clear(); | 114 | 1 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 101 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 1 | } |
_ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE4readERNS_14BufferReadableE Line | Count | Source | 107 | 1 | void read(BufferReadable& buf) { | 108 | 1 | buf.read_binary(max_num_buckets); | 109 | | | 110 | 1 | size_t element_number = 0; | 111 | 1 | buf.read_binary(element_number); | 112 | | | 113 | 1 | ordered_map.clear(); | 114 | 1 | std::pair<typename PrimitiveTypeTraits<T>::CppType, size_t> element; | 115 | 101 | for (auto i = 0; i < element_number; i++) { | 116 | 100 | buf.read_binary(element.first); | 117 | 100 | buf.read_binary(element.second); | 118 | 100 | ordered_map.insert(element); | 119 | 100 | } | 120 | 1 | } |
Unexecuted instantiation: _ZN5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE4readERNS_14BufferReadableE |
121 | | |
122 | | void insert_result_into(IColumn& to) const { |
123 | | auto pair_vector = map_to_vector(); |
124 | | for (auto i = 0; i < pair_vector.size(); i++) { |
125 | | const auto& element = pair_vector[i]; |
126 | | if constexpr (is_string_type(T)) { |
127 | | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( |
128 | | element.second.c_str(), element.second.length()); |
129 | | } else { |
130 | | assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data().push_back( |
131 | | element.second); |
132 | | } |
133 | | } |
134 | | } |
135 | | |
136 | 36 | std::string get(const DataTypePtr& data_type) const { |
137 | 36 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; |
138 | 36 | rapidjson::StringBuffer buffer; |
139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, |
140 | | // when target column is nullable, and input block is all null, |
141 | | // set_parameters will not be called because of the short-circuit in |
142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. |
143 | 36 | build_histogram( |
144 | 36 | buckets, ordered_map, |
145 | 36 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); |
146 | 36 | histogram_to_json(buffer, buckets, data_type); |
147 | 36 | return {buffer.GetString()}; |
148 | 36 | } Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 4 | std::string get(const DataTypePtr& data_type) const { | 137 | 4 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 4 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 4 | build_histogram( | 144 | 4 | buckets, ordered_map, | 145 | 4 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 4 | histogram_to_json(buffer, buckets, data_type); | 147 | 4 | return {buffer.GetString()}; | 148 | 4 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 2 | std::string get(const DataTypePtr& data_type) const { | 137 | 2 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 2 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 2 | build_histogram( | 144 | 2 | buckets, ordered_map, | 145 | 2 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 2 | histogram_to_json(buffer, buckets, data_type); | 147 | 2 | return {buffer.GetString()}; | 148 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE Line | Count | Source | 136 | 2 | std::string get(const DataTypePtr& data_type) const { | 137 | 2 | std::vector<Bucket<typename PrimitiveTypeTraits<T>::CppType>> buckets; | 138 | 2 | rapidjson::StringBuffer buffer; | 139 | | // NOTE: We need an extral branch for to handle max_num_buckets == 0, | 140 | | // when target column is nullable, and input block is all null, | 141 | | // set_parameters will not be called because of the short-circuit in | 142 | | // AggregateFunctionNullVariadicInline, so max_num_buckets will be 0 in this situation. | 143 | 2 | build_histogram( | 144 | 2 | buckets, ordered_map, | 145 | 2 | max_num_buckets == BUCKET_NUM_INIT_VALUE ? DEFAULT_BUCKET_NUM : max_num_buckets); | 146 | 2 | histogram_to_json(buffer, buckets, data_type); | 147 | 2 | return {buffer.GetString()}; | 148 | 2 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE3getB5cxx11ERKSt10shared_ptrIKNS_9IDataTypeEE |
149 | | |
150 | 18 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { |
151 | 18 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; |
152 | 1.90k | for (auto it : ordered_map) { |
153 | 1.90k | pair_vector.emplace_back(it.second, it.first); |
154 | 1.90k | } |
155 | 18 | return pair_vector; |
156 | 18 | } Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EE13map_to_vectorEv _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EE13map_to_vectorEv Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EE13map_to_vectorEv Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EE13map_to_vectorEv Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EE13map_to_vectorEv Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EE13map_to_vectorEv _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EE13map_to_vectorB5cxx11Ev Line | Count | Source | 150 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 2 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 1.00k | for (auto it : ordered_map) { | 153 | 1.00k | pair_vector.emplace_back(it.second, it.first); | 154 | 1.00k | } | 155 | 2 | return pair_vector; | 156 | 2 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EE13map_to_vectorEv Line | Count | Source | 150 | 1 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 1 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 1 | return pair_vector; | 156 | 1 | } |
_ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EE13map_to_vectorEv Line | Count | Source | 150 | 1 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> map_to_vector() const { | 151 | 1 | std::vector<std::pair<size_t, typename PrimitiveTypeTraits<T>::CppType>> pair_vector; | 152 | 100 | for (auto it : ordered_map) { | 153 | 100 | pair_vector.emplace_back(it.second, it.first); | 154 | 100 | } | 155 | 1 | return pair_vector; | 156 | 1 | } |
Unexecuted instantiation: _ZNK5doris30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EE13map_to_vectorEv |
157 | | |
158 | | private: |
159 | | size_t max_num_buckets = BUCKET_NUM_INIT_VALUE; |
160 | | std::map<typename PrimitiveTypeTraits<T>::CppType, size_t> ordered_map; |
161 | | }; |
162 | | |
163 | | template <typename Data, bool has_input_param> |
164 | | class AggregateFunctionHistogram final |
165 | | : public IAggregateFunctionDataHelper<Data, |
166 | | AggregateFunctionHistogram<Data, has_input_param>>, |
167 | | VarargsExpression, |
168 | | NotNullableAggregateFunction { |
169 | | public: |
170 | | AggregateFunctionHistogram() = default; |
171 | | AggregateFunctionHistogram(const DataTypes& argument_types_) |
172 | 19 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( |
173 | 19 | argument_types_), |
174 | 19 | _argument_type(argument_types_[0]) {}Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
_ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 1 | argument_types_), | 174 | 1 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 172 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionHistogram<Data, has_input_param>>( | 173 | 2 | argument_types_), | 174 | 2 | _argument_type(argument_types_[0]) {} |
Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE |
175 | | |
176 | 1 | std::string get_name() const override { return "histogram"; }Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE8get_nameB5cxx11Ev _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 176 | 1 | std::string get_name() const override { return "histogram"; } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE8get_nameB5cxx11Ev |
177 | | |
178 | 2 | DataTypePtr get_return_type() const override { return std::make_shared<DataTypeString>(); }Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE15get_return_typeEv _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE15get_return_typeEv Line | Count | Source | 178 | 2 | DataTypePtr get_return_type() const override { return std::make_shared<DataTypeString>(); } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE15get_return_typeEv |
179 | | |
180 | | void add(AggregateDataPtr __restrict place, const IColumn** columns, ssize_t row_num, |
181 | 3.80k | Arena&) const override { |
182 | 3.80k | if constexpr (has_input_param) { |
183 | 3.80k | Int32 input_max_num_buckets = |
184 | 3.80k | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
185 | 3.80k | ->get_element(row_num); |
186 | 3.80k | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { |
187 | 0 | throw doris::Exception( |
188 | 0 | ErrorCode::INVALID_ARGUMENT, |
189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", |
190 | 0 | input_max_num_buckets, row_num); |
191 | 0 | } |
192 | 3.80k | this->data(place).set_parameters(input_max_num_buckets); |
193 | 3.80k | } else { |
194 | 0 | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); |
195 | 0 | } |
196 | | |
197 | 2.00k | if constexpr (is_string_type(Data::Ptype)) { |
198 | 2.00k | this->data(place).add( |
199 | 2.00k | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) |
200 | 2.00k | .get_data_at(row_num)); |
201 | 2.00k | } else { |
202 | 1.80k | this->data(place).add( |
203 | 1.80k | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( |
204 | 1.80k | *columns[0]) |
205 | 1.80k | .get_data()[row_num]); |
206 | 1.80k | } |
207 | 3.80k | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 2.00k | Arena&) const override { | 182 | 2.00k | if constexpr (has_input_param) { | 183 | 2.00k | Int32 input_max_num_buckets = | 184 | 2.00k | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 2.00k | ->get_element(row_num); | 186 | 2.00k | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 2.00k | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | 2.00k | if constexpr (is_string_type(Data::Ptype)) { | 198 | 2.00k | this->data(place).add( | 199 | 2.00k | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | 2.00k | .get_data_at(row_num)); | 201 | | } else { | 202 | | this->data(place).add( | 203 | | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | | *columns[0]) | 205 | | .get_data()[row_num]); | 206 | | } | 207 | 2.00k | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 181 | 200 | Arena&) const override { | 182 | 200 | if constexpr (has_input_param) { | 183 | 200 | Int32 input_max_num_buckets = | 184 | 200 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 185 | 200 | ->get_element(row_num); | 186 | 200 | if (input_max_num_buckets <= 0 || input_max_num_buckets > 1000000) { | 187 | 0 | throw doris::Exception( | 188 | 0 | ErrorCode::INVALID_ARGUMENT, | 189 | 0 | "Invalid max_num_buckets {}, row_num {}, should be in (0, 1000000]", | 190 | 0 | input_max_num_buckets, row_num); | 191 | 0 | } | 192 | 200 | this->data(place).set_parameters(input_max_num_buckets); | 193 | | } else { | 194 | | this->data(place).set_parameters(Data::DEFAULT_BUCKET_NUM); | 195 | | } | 196 | | | 197 | | if constexpr (is_string_type(Data::Ptype)) { | 198 | | this->data(place).add( | 199 | | assert_cast<const ColumnString&, TypeCheckOnRelease::DISABLE>(*columns[0]) | 200 | | .get_data_at(row_num)); | 201 | 200 | } else { | 202 | 200 | this->data(place).add( | 203 | 200 | assert_cast<const typename Data::ColVecType&, TypeCheckOnRelease::DISABLE>( | 204 | 200 | *columns[0]) | 205 | 200 | .get_data()[row_num]); | 206 | 200 | } | 207 | 200 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE |
208 | | |
209 | 0 | void check_input_columns_type(const IColumn** columns) const override { |
210 | 0 | this->template check_argument_column_type<typename Data::ColVecType>(columns[0]); |
211 | 0 | if constexpr (has_input_param) { |
212 | 0 | this->template check_argument_column_type<ColumnInt32>(columns[1]); |
213 | 0 | } |
214 | 0 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE |
215 | | |
216 | 0 | void reset(AggregateDataPtr place) const override { this->data(place).reset(); }Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE5resetEPc Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE5resetEPc |
217 | | |
218 | | void merge(AggregateDataPtr __restrict place, ConstAggregateDataPtr rhs, |
219 | 18 | Arena&) const override { |
220 | 18 | this->data(place).merge(this->data(rhs)); |
221 | 18 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 219 | 1 | Arena&) const override { | 220 | 1 | this->data(place).merge(this->data(rhs)); | 221 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE5mergeEPcPKcRNS_5ArenaE |
222 | | |
223 | 18 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { |
224 | 18 | this->data(place).write(buf); |
225 | 18 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 223 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 224 | 1 | this->data(place).write(buf); | 225 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE9serializeEPKcRNS_14BufferWritableE |
226 | | |
227 | | void deserialize(AggregateDataPtr __restrict place, BufferReadable& buf, |
228 | 18 | Arena&) const override { |
229 | 18 | this->data(place).read(buf); |
230 | 18 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 228 | 1 | Arena&) const override { | 229 | 1 | this->data(place).read(buf); | 230 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE |
231 | | |
232 | 36 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
233 | 36 | const std::string bucket_json = this->data(place).get(_argument_type); |
234 | 36 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( |
235 | 36 | bucket_json.c_str(), bucket_json.length()); |
236 | 36 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
_ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 232 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 233 | 2 | const std::string bucket_json = this->data(place).get(_argument_type); | 234 | 2 | assert_cast<ColumnString&, TypeCheckOnRelease::DISABLE>(to).insert_data( | 235 | 2 | bucket_json.c_str(), bucket_json.length()); | 236 | 2 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE18insert_result_intoEPKcRNS_7IColumnE |
237 | | |
238 | 1 | void check_result_column_type(const IColumn& to) const override { |
239 | 1 | IAggregateFunction::check_result_column_type(to); |
240 | 1 | this->template check_result_column_type_as<ColumnString>(to); |
241 | 1 | } Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 238 | 1 | void check_result_column_type(const IColumn& to) const override { | 239 | 1 | IAggregateFunction::check_result_column_type(to); | 240 | 1 | this->template check_result_column_type_as<ColumnString>(to); | 241 | 1 | } |
Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EE24check_result_column_typeERKNS_7IColumnE |
242 | | |
243 | | private: |
244 | | DataTypePtr _argument_type; |
245 | | }; |
246 | | |
247 | | } // namespace doris |