be/src/exprs/aggregate/aggregate_function_collect.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 <assert.h> |
21 | | #include <glog/logging.h> |
22 | | #include <string.h> |
23 | | |
24 | | #include <cstddef> |
25 | | #include <limits> |
26 | | #include <memory> |
27 | | #include <new> |
28 | | #include <string> |
29 | | |
30 | | #include "core/assert_cast.h" |
31 | | #include "core/column/column.h" |
32 | | #include "core/column/column_array.h" |
33 | | #include "core/column/column_decimal.h" |
34 | | #include "core/column/column_nullable.h" |
35 | | #include "core/column/column_string.h" |
36 | | #include "core/data_type/data_type.h" |
37 | | #include "core/data_type/data_type_array.h" |
38 | | #include "core/data_type/data_type_nullable.h" |
39 | | #include "core/pod_array_fwd.h" |
40 | | #include "core/string_buffer.hpp" |
41 | | #include "core/string_ref.h" |
42 | | #include "core/types.h" |
43 | | #include "exprs/aggregate/aggregate_function.h" |
44 | | #include "util/var_int.h" |
45 | | |
46 | | namespace doris { |
47 | | template <PrimitiveType T, bool HasLimit> |
48 | | struct AggregateFunctionCollectSetData { |
49 | | static constexpr PrimitiveType PType = T; |
50 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
51 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
52 | | using SelfType = AggregateFunctionCollectSetData; |
53 | | using Set = phmap::flat_hash_set<ElementType>; |
54 | | Set data_set; |
55 | | Int64 max_size = -1; |
56 | | |
57 | 1.75k | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 28 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 25 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 932 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 44 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 28 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 23 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 22 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 23 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 4 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 53 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 50 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 164 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 47 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 60 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 57 | 60 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE |
58 | | |
59 | 923 | size_t size() const { return data_set.size(); }_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv Line | Count | Source | 59 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 59 | 7 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 59 | 6 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 59 | 220 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 59 | 12 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 59 | 8 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Line | Count | Source | 59 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Line | Count | Source | 59 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Line | Count | Source | 59 | 4 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 59 | 4 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE4sizeEv Line | Count | Source | 59 | 14 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 59 | 10 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE4sizeEv Line | Count | Source | 59 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Line | Count | Source | 59 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv Line | Count | Source | 59 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 59 | 123 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 59 | 87 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Line | Count | Source | 59 | 40 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Line | Count | Source | 59 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Line | Count | Source | 59 | 36 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Line | Count | Source | 59 | 32 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE4sizeEv Line | Count | Source | 59 | 92 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Line | Count | Source | 59 | 88 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE4sizeEv |
60 | | |
61 | 1.04k | void add(const IColumn& column, size_t row_num) { |
62 | 1.04k | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) |
63 | 1.04k | .get_data()[row_num]); |
64 | 1.04k | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 24 | void add(const IColumn& column, size_t row_num) { | 62 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 24 | .get_data()[row_num]); | 64 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 25 | void add(const IColumn& column, size_t row_num) { | 62 | 25 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 25 | .get_data()[row_num]); | 64 | 25 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 24 | void add(const IColumn& column, size_t row_num) { | 62 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 24 | .get_data()[row_num]); | 64 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 394 | void add(const IColumn& column, size_t row_num) { | 62 | 394 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 394 | .get_data()[row_num]); | 64 | 394 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 45 | void add(const IColumn& column, size_t row_num) { | 62 | 45 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 45 | .get_data()[row_num]); | 64 | 45 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 144 | void add(const IColumn& column, size_t row_num) { | 62 | 144 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 144 | .get_data()[row_num]); | 64 | 144 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 24 | void add(const IColumn& column, size_t row_num) { | 62 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 24 | .get_data()[row_num]); | 64 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 24 | void add(const IColumn& column, size_t row_num) { | 62 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 24 | .get_data()[row_num]); | 64 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 24 | void add(const IColumn& column, size_t row_num) { | 62 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 24 | .get_data()[row_num]); | 64 | 24 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 44 | void add(const IColumn& column, size_t row_num) { | 62 | 44 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 44 | .get_data()[row_num]); | 64 | 44 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 54 | void add(const IColumn& column, size_t row_num) { | 62 | 54 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 54 | .get_data()[row_num]); | 64 | 54 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 72 | void add(const IColumn& column, size_t row_num) { | 62 | 72 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 72 | .get_data()[row_num]); | 64 | 72 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 4 | void add(const IColumn& column, size_t row_num) { | 62 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 4 | .get_data()[row_num]); | 64 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 4 | void add(const IColumn& column, size_t row_num) { | 62 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 4 | .get_data()[row_num]); | 64 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 4 | void add(const IColumn& column, size_t row_num) { | 62 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 4 | .get_data()[row_num]); | 64 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 22 | void add(const IColumn& column, size_t row_num) { | 62 | 22 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 22 | .get_data()[row_num]); | 64 | 22 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 27 | void add(const IColumn& column, size_t row_num) { | 62 | 27 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 27 | .get_data()[row_num]); | 64 | 27 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 16 | void add(const IColumn& column, size_t row_num) { | 62 | 16 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 16 | .get_data()[row_num]); | 64 | 16 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 4 | void add(const IColumn& column, size_t row_num) { | 62 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 4 | .get_data()[row_num]); | 64 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 12 | void add(const IColumn& column, size_t row_num) { | 62 | 12 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 12 | .get_data()[row_num]); | 64 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 4 | void add(const IColumn& column, size_t row_num) { | 62 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 4 | .get_data()[row_num]); | 64 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 29 | void add(const IColumn& column, size_t row_num) { | 62 | 29 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 29 | .get_data()[row_num]); | 64 | 29 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 61 | 22 | void add(const IColumn& column, size_t row_num) { | 62 | 22 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 63 | 22 | .get_data()[row_num]); | 64 | 22 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE3addERKNS_7IColumnEm |
65 | | |
66 | 511 | void merge(const SelfType& rhs) { |
67 | 511 | if constexpr (HasLimit) { |
68 | 124 | if (max_size == -1) { |
69 | 105 | max_size = rhs.max_size; |
70 | 105 | } |
71 | | |
72 | 155 | for (auto& rhs_elem : rhs.data_set) { |
73 | 155 | if (size() >= max_size) { |
74 | 8 | return; |
75 | 8 | } |
76 | 147 | data_set.insert(rhs_elem); |
77 | 147 | } |
78 | 387 | } else { |
79 | 605 | for (const auto& elem : rhs.data_set) { |
80 | 605 | data_set.insert(elem); |
81 | 605 | } |
82 | 387 | } |
83 | 511 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 4 | } else { | 79 | 8 | for (const auto& elem : rhs.data_set) { | 80 | 8 | data_set.insert(elem); | 81 | 8 | } | 82 | 4 | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 6 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 6 | } else { | 79 | 17 | for (const auto& elem : rhs.data_set) { | 80 | 17 | data_set.insert(elem); | 81 | 17 | } | 82 | 6 | } | 83 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 5 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 5 | } else { | 79 | 20 | for (const auto& elem : rhs.data_set) { | 80 | 20 | data_set.insert(elem); | 81 | 20 | } | 82 | 5 | } | 83 | 5 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 323 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 323 | } else { | 79 | 337 | for (const auto& elem : rhs.data_set) { | 80 | 337 | data_set.insert(elem); | 81 | 337 | } | 82 | 323 | } | 83 | 323 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 11 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 11 | } else { | 79 | 32 | for (const auto& elem : rhs.data_set) { | 80 | 32 | data_set.insert(elem); | 81 | 32 | } | 82 | 11 | } | 83 | 11 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 6 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 6 | } else { | 79 | 50 | for (const auto& elem : rhs.data_set) { | 80 | 50 | data_set.insert(elem); | 81 | 50 | } | 82 | 6 | } | 83 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 4 | } else { | 79 | 20 | for (const auto& elem : rhs.data_set) { | 80 | 20 | data_set.insert(elem); | 81 | 20 | } | 82 | 4 | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 4 | } else { | 79 | 20 | for (const auto& elem : rhs.data_set) { | 80 | 20 | data_set.insert(elem); | 81 | 20 | } | 82 | 4 | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 4 | } else { | 79 | 20 | for (const auto& elem : rhs.data_set) { | 80 | 20 | data_set.insert(elem); | 81 | 20 | } | 82 | 4 | } | 83 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 2 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 2 | } else { | 79 | 11 | for (const auto& elem : rhs.data_set) { | 80 | 11 | data_set.insert(elem); | 81 | 11 | } | 82 | 2 | } | 83 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 9 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 9 | } else { | 79 | 32 | for (const auto& elem : rhs.data_set) { | 80 | 32 | data_set.insert(elem); | 81 | 32 | } | 82 | 9 | } | 83 | 9 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 66 | 9 | void merge(const SelfType& rhs) { | 67 | | if constexpr (HasLimit) { | 68 | | if (max_size == -1) { | 69 | | max_size = rhs.max_size; | 70 | | } | 71 | | | 72 | | for (auto& rhs_elem : rhs.data_set) { | 73 | | if (size() >= max_size) { | 74 | | return; | 75 | | } | 76 | | data_set.insert(rhs_elem); | 77 | | } | 78 | 9 | } else { | 79 | 38 | for (const auto& elem : rhs.data_set) { | 80 | 38 | data_set.insert(elem); | 81 | 38 | } | 82 | 9 | } | 83 | 9 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 4 | for (auto& rhs_elem : rhs.data_set) { | 73 | 4 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 4 | data_set.insert(rhs_elem); | 77 | 4 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 4 | for (auto& rhs_elem : rhs.data_set) { | 73 | 4 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 4 | data_set.insert(rhs_elem); | 77 | 4 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 4 | for (auto& rhs_elem : rhs.data_set) { | 73 | 4 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 4 | data_set.insert(rhs_elem); | 77 | 4 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 58 | void merge(const SelfType& rhs) { | 67 | 58 | if constexpr (HasLimit) { | 68 | 58 | if (max_size == -1) { | 69 | 50 | max_size = rhs.max_size; | 70 | 50 | } | 71 | | | 72 | 61 | for (auto& rhs_elem : rhs.data_set) { | 73 | 61 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 61 | data_set.insert(rhs_elem); | 77 | 61 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 58 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 12 | void merge(const SelfType& rhs) { | 67 | 12 | if constexpr (HasLimit) { | 68 | 12 | if (max_size == -1) { | 69 | 8 | max_size = rhs.max_size; | 70 | 8 | } | 71 | | | 72 | 18 | for (auto& rhs_elem : rhs.data_set) { | 73 | 18 | if (size() >= max_size) { | 74 | 2 | return; | 75 | 2 | } | 76 | 16 | data_set.insert(rhs_elem); | 77 | 16 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 12 | for (auto& rhs_elem : rhs.data_set) { | 73 | 12 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 12 | data_set.insert(rhs_elem); | 77 | 12 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 4 | for (auto& rhs_elem : rhs.data_set) { | 73 | 4 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 4 | data_set.insert(rhs_elem); | 77 | 4 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 8 | for (auto& rhs_elem : rhs.data_set) { | 73 | 8 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 8 | data_set.insert(rhs_elem); | 77 | 8 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 4 | void merge(const SelfType& rhs) { | 67 | 4 | if constexpr (HasLimit) { | 68 | 4 | if (max_size == -1) { | 69 | 4 | max_size = rhs.max_size; | 70 | 4 | } | 71 | | | 72 | 4 | for (auto& rhs_elem : rhs.data_set) { | 73 | 4 | if (size() >= max_size) { | 74 | 0 | return; | 75 | 0 | } | 76 | 4 | data_set.insert(rhs_elem); | 77 | 4 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 13 | void merge(const SelfType& rhs) { | 67 | 13 | if constexpr (HasLimit) { | 68 | 13 | if (max_size == -1) { | 69 | 9 | max_size = rhs.max_size; | 70 | 9 | } | 71 | | | 72 | 20 | for (auto& rhs_elem : rhs.data_set) { | 73 | 20 | if (size() >= max_size) { | 74 | 3 | return; | 75 | 3 | } | 76 | 17 | data_set.insert(rhs_elem); | 77 | 17 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 13 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Line | Count | Source | 66 | 13 | void merge(const SelfType& rhs) { | 67 | 13 | if constexpr (HasLimit) { | 68 | 13 | if (max_size == -1) { | 69 | 10 | max_size = rhs.max_size; | 70 | 10 | } | 71 | | | 72 | 16 | for (auto& rhs_elem : rhs.data_set) { | 73 | 16 | if (size() >= max_size) { | 74 | 3 | return; | 75 | 3 | } | 76 | 13 | data_set.insert(rhs_elem); | 77 | 13 | } | 78 | | } else { | 79 | | for (const auto& elem : rhs.data_set) { | 80 | | data_set.insert(elem); | 81 | | } | 82 | | } | 83 | 13 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ |
84 | | |
85 | 549 | void write(BufferWritable& buf) const { |
86 | 549 | buf.write_var_uint(data_set.size()); |
87 | 813 | for (const auto& value : data_set) { |
88 | 813 | buf.write_binary(value); |
89 | 813 | } |
90 | 549 | write_var_int(max_size, buf); |
91 | 549 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 8 | for (const auto& value : data_set) { | 88 | 8 | buf.write_binary(value); | 89 | 8 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 6 | void write(BufferWritable& buf) const { | 86 | 6 | buf.write_var_uint(data_set.size()); | 87 | 17 | for (const auto& value : data_set) { | 88 | 17 | buf.write_binary(value); | 89 | 17 | } | 90 | 6 | write_var_int(max_size, buf); | 91 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 5 | void write(BufferWritable& buf) const { | 86 | 5 | buf.write_var_uint(data_set.size()); | 87 | 20 | for (const auto& value : data_set) { | 88 | 20 | buf.write_binary(value); | 89 | 20 | } | 90 | 5 | write_var_int(max_size, buf); | 91 | 5 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 362 | void write(BufferWritable& buf) const { | 86 | 362 | buf.write_var_uint(data_set.size()); | 87 | 376 | for (const auto& value : data_set) { | 88 | 376 | buf.write_binary(value); | 89 | 376 | } | 90 | 362 | write_var_int(max_size, buf); | 91 | 362 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 12 | void write(BufferWritable& buf) const { | 86 | 12 | buf.write_var_uint(data_set.size()); | 87 | 35 | for (const auto& value : data_set) { | 88 | 35 | buf.write_binary(value); | 89 | 35 | } | 90 | 12 | write_var_int(max_size, buf); | 91 | 12 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 6 | void write(BufferWritable& buf) const { | 86 | 6 | buf.write_var_uint(data_set.size()); | 87 | 50 | for (const auto& value : data_set) { | 88 | 50 | buf.write_binary(value); | 89 | 50 | } | 90 | 6 | write_var_int(max_size, buf); | 91 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 20 | for (const auto& value : data_set) { | 88 | 20 | buf.write_binary(value); | 89 | 20 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 20 | for (const auto& value : data_set) { | 88 | 20 | buf.write_binary(value); | 89 | 20 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 20 | for (const auto& value : data_set) { | 88 | 20 | buf.write_binary(value); | 89 | 20 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 2 | void write(BufferWritable& buf) const { | 86 | 2 | buf.write_var_uint(data_set.size()); | 87 | 11 | for (const auto& value : data_set) { | 88 | 11 | buf.write_binary(value); | 89 | 11 | } | 90 | 2 | write_var_int(max_size, buf); | 91 | 2 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 9 | void write(BufferWritable& buf) const { | 86 | 9 | buf.write_var_uint(data_set.size()); | 87 | 32 | for (const auto& value : data_set) { | 88 | 32 | buf.write_binary(value); | 89 | 32 | } | 90 | 9 | write_var_int(max_size, buf); | 91 | 9 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 9 | void write(BufferWritable& buf) const { | 86 | 9 | buf.write_var_uint(data_set.size()); | 87 | 38 | for (const auto& value : data_set) { | 88 | 38 | buf.write_binary(value); | 89 | 38 | } | 90 | 9 | write_var_int(max_size, buf); | 91 | 9 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 4 | for (const auto& value : data_set) { | 88 | 4 | buf.write_binary(value); | 89 | 4 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 4 | for (const auto& value : data_set) { | 88 | 4 | buf.write_binary(value); | 89 | 4 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 4 | for (const auto& value : data_set) { | 88 | 4 | buf.write_binary(value); | 89 | 4 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 56 | void write(BufferWritable& buf) const { | 86 | 56 | buf.write_var_uint(data_set.size()); | 87 | 61 | for (const auto& value : data_set) { | 88 | 61 | buf.write_binary(value); | 89 | 61 | } | 90 | 56 | write_var_int(max_size, buf); | 91 | 56 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 13 | void write(BufferWritable& buf) const { | 86 | 13 | buf.write_var_uint(data_set.size()); | 87 | 21 | for (const auto& value : data_set) { | 88 | 21 | buf.write_binary(value); | 89 | 21 | } | 90 | 13 | write_var_int(max_size, buf); | 91 | 13 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 12 | for (const auto& value : data_set) { | 88 | 12 | buf.write_binary(value); | 89 | 12 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 4 | for (const auto& value : data_set) { | 88 | 4 | buf.write_binary(value); | 89 | 4 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 8 | for (const auto& value : data_set) { | 88 | 8 | buf.write_binary(value); | 89 | 8 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 4 | void write(BufferWritable& buf) const { | 86 | 4 | buf.write_var_uint(data_set.size()); | 87 | 4 | for (const auto& value : data_set) { | 88 | 4 | buf.write_binary(value); | 89 | 4 | } | 90 | 4 | write_var_int(max_size, buf); | 91 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 13 | void write(BufferWritable& buf) const { | 86 | 13 | buf.write_var_uint(data_set.size()); | 87 | 25 | for (const auto& value : data_set) { | 88 | 25 | buf.write_binary(value); | 89 | 25 | } | 90 | 13 | write_var_int(max_size, buf); | 91 | 13 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 85 | 12 | void write(BufferWritable& buf) const { | 86 | 12 | buf.write_var_uint(data_set.size()); | 87 | 19 | for (const auto& value : data_set) { | 88 | 19 | buf.write_binary(value); | 89 | 19 | } | 90 | 12 | write_var_int(max_size, buf); | 91 | 12 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE5writeERNS_14BufferWritableE |
92 | | |
93 | 511 | void read(BufferReadable& buf) { |
94 | 511 | uint64_t new_size = 0; |
95 | 511 | buf.read_var_uint(new_size); |
96 | 511 | ElementType x; |
97 | 1.27k | for (size_t i = 0; i < new_size; ++i) { |
98 | 768 | buf.read_binary(x); |
99 | 768 | data_set.insert(x); |
100 | 768 | } |
101 | 511 | read_var_int(max_size, buf); |
102 | 511 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 12 | for (size_t i = 0; i < new_size; ++i) { | 98 | 8 | buf.read_binary(x); | 99 | 8 | data_set.insert(x); | 100 | 8 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 6 | void read(BufferReadable& buf) { | 94 | 6 | uint64_t new_size = 0; | 95 | 6 | buf.read_var_uint(new_size); | 96 | 6 | ElementType x; | 97 | 23 | for (size_t i = 0; i < new_size; ++i) { | 98 | 17 | buf.read_binary(x); | 99 | 17 | data_set.insert(x); | 100 | 17 | } | 101 | 6 | read_var_int(max_size, buf); | 102 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 5 | void read(BufferReadable& buf) { | 94 | 5 | uint64_t new_size = 0; | 95 | 5 | buf.read_var_uint(new_size); | 96 | 5 | ElementType x; | 97 | 25 | for (size_t i = 0; i < new_size; ++i) { | 98 | 20 | buf.read_binary(x); | 99 | 20 | data_set.insert(x); | 100 | 20 | } | 101 | 5 | read_var_int(max_size, buf); | 102 | 5 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 323 | void read(BufferReadable& buf) { | 94 | 323 | uint64_t new_size = 0; | 95 | 323 | buf.read_var_uint(new_size); | 96 | 323 | ElementType x; | 97 | 660 | for (size_t i = 0; i < new_size; ++i) { | 98 | 337 | buf.read_binary(x); | 99 | 337 | data_set.insert(x); | 100 | 337 | } | 101 | 323 | read_var_int(max_size, buf); | 102 | 323 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 11 | void read(BufferReadable& buf) { | 94 | 11 | uint64_t new_size = 0; | 95 | 11 | buf.read_var_uint(new_size); | 96 | 11 | ElementType x; | 97 | 43 | for (size_t i = 0; i < new_size; ++i) { | 98 | 32 | buf.read_binary(x); | 99 | 32 | data_set.insert(x); | 100 | 32 | } | 101 | 11 | read_var_int(max_size, buf); | 102 | 11 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 6 | void read(BufferReadable& buf) { | 94 | 6 | uint64_t new_size = 0; | 95 | 6 | buf.read_var_uint(new_size); | 96 | 6 | ElementType x; | 97 | 56 | for (size_t i = 0; i < new_size; ++i) { | 98 | 50 | buf.read_binary(x); | 99 | 50 | data_set.insert(x); | 100 | 50 | } | 101 | 6 | read_var_int(max_size, buf); | 102 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 24 | for (size_t i = 0; i < new_size; ++i) { | 98 | 20 | buf.read_binary(x); | 99 | 20 | data_set.insert(x); | 100 | 20 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 24 | for (size_t i = 0; i < new_size; ++i) { | 98 | 20 | buf.read_binary(x); | 99 | 20 | data_set.insert(x); | 100 | 20 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 24 | for (size_t i = 0; i < new_size; ++i) { | 98 | 20 | buf.read_binary(x); | 99 | 20 | data_set.insert(x); | 100 | 20 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 2 | void read(BufferReadable& buf) { | 94 | 2 | uint64_t new_size = 0; | 95 | 2 | buf.read_var_uint(new_size); | 96 | 2 | ElementType x; | 97 | 13 | for (size_t i = 0; i < new_size; ++i) { | 98 | 11 | buf.read_binary(x); | 99 | 11 | data_set.insert(x); | 100 | 11 | } | 101 | 2 | read_var_int(max_size, buf); | 102 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 9 | void read(BufferReadable& buf) { | 94 | 9 | uint64_t new_size = 0; | 95 | 9 | buf.read_var_uint(new_size); | 96 | 9 | ElementType x; | 97 | 41 | for (size_t i = 0; i < new_size; ++i) { | 98 | 32 | buf.read_binary(x); | 99 | 32 | data_set.insert(x); | 100 | 32 | } | 101 | 9 | read_var_int(max_size, buf); | 102 | 9 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 9 | void read(BufferReadable& buf) { | 94 | 9 | uint64_t new_size = 0; | 95 | 9 | buf.read_var_uint(new_size); | 96 | 9 | ElementType x; | 97 | 47 | for (size_t i = 0; i < new_size; ++i) { | 98 | 38 | buf.read_binary(x); | 99 | 38 | data_set.insert(x); | 100 | 38 | } | 101 | 9 | read_var_int(max_size, buf); | 102 | 9 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 8 | for (size_t i = 0; i < new_size; ++i) { | 98 | 4 | buf.read_binary(x); | 99 | 4 | data_set.insert(x); | 100 | 4 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 8 | for (size_t i = 0; i < new_size; ++i) { | 98 | 4 | buf.read_binary(x); | 99 | 4 | data_set.insert(x); | 100 | 4 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 8 | for (size_t i = 0; i < new_size; ++i) { | 98 | 4 | buf.read_binary(x); | 99 | 4 | data_set.insert(x); | 100 | 4 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 58 | void read(BufferReadable& buf) { | 94 | 58 | uint64_t new_size = 0; | 95 | 58 | buf.read_var_uint(new_size); | 96 | 58 | ElementType x; | 97 | 119 | for (size_t i = 0; i < new_size; ++i) { | 98 | 61 | buf.read_binary(x); | 99 | 61 | data_set.insert(x); | 100 | 61 | } | 101 | 58 | read_var_int(max_size, buf); | 102 | 58 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 12 | void read(BufferReadable& buf) { | 94 | 12 | uint64_t new_size = 0; | 95 | 12 | buf.read_var_uint(new_size); | 96 | 12 | ElementType x; | 97 | 30 | for (size_t i = 0; i < new_size; ++i) { | 98 | 18 | buf.read_binary(x); | 99 | 18 | data_set.insert(x); | 100 | 18 | } | 101 | 12 | read_var_int(max_size, buf); | 102 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 16 | for (size_t i = 0; i < new_size; ++i) { | 98 | 12 | buf.read_binary(x); | 99 | 12 | data_set.insert(x); | 100 | 12 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 8 | for (size_t i = 0; i < new_size; ++i) { | 98 | 4 | buf.read_binary(x); | 99 | 4 | data_set.insert(x); | 100 | 4 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 12 | for (size_t i = 0; i < new_size; ++i) { | 98 | 8 | buf.read_binary(x); | 99 | 8 | data_set.insert(x); | 100 | 8 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 4 | void read(BufferReadable& buf) { | 94 | 4 | uint64_t new_size = 0; | 95 | 4 | buf.read_var_uint(new_size); | 96 | 4 | ElementType x; | 97 | 8 | for (size_t i = 0; i < new_size; ++i) { | 98 | 4 | buf.read_binary(x); | 99 | 4 | data_set.insert(x); | 100 | 4 | } | 101 | 4 | read_var_int(max_size, buf); | 102 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 13 | void read(BufferReadable& buf) { | 94 | 13 | uint64_t new_size = 0; | 95 | 13 | buf.read_var_uint(new_size); | 96 | 13 | ElementType x; | 97 | 38 | for (size_t i = 0; i < new_size; ++i) { | 98 | 25 | buf.read_binary(x); | 99 | 25 | data_set.insert(x); | 100 | 25 | } | 101 | 13 | read_var_int(max_size, buf); | 102 | 13 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 93 | 13 | void read(BufferReadable& buf) { | 94 | 13 | uint64_t new_size = 0; | 95 | 13 | buf.read_var_uint(new_size); | 96 | 13 | ElementType x; | 97 | 32 | for (size_t i = 0; i < new_size; ++i) { | 98 | 19 | buf.read_binary(x); | 99 | 19 | data_set.insert(x); | 100 | 19 | } | 101 | 13 | read_var_int(max_size, buf); | 102 | 13 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE4readERNS_14BufferReadableE |
103 | | |
104 | 368 | void insert_result_into(IColumn& to) const { |
105 | 368 | auto& vec = assert_cast<ColVecType&>(to).get_data(); |
106 | 368 | vec.reserve(size()); |
107 | 686 | for (const auto& item : data_set) { |
108 | 686 | vec.push_back(item); |
109 | 686 | } |
110 | 368 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 8 | for (const auto& item : data_set) { | 108 | 8 | vec.push_back(item); | 109 | 8 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 7 | void insert_result_into(IColumn& to) const { | 105 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 7 | vec.reserve(size()); | 107 | 17 | for (const auto& item : data_set) { | 108 | 17 | vec.push_back(item); | 109 | 17 | } | 110 | 7 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 6 | void insert_result_into(IColumn& to) const { | 105 | 6 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 6 | vec.reserve(size()); | 107 | 20 | for (const auto& item : data_set) { | 108 | 20 | vec.push_back(item); | 109 | 20 | } | 110 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 220 | void insert_result_into(IColumn& to) const { | 105 | 220 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 220 | vec.reserve(size()); | 107 | 249 | for (const auto& item : data_set) { | 108 | 249 | vec.push_back(item); | 109 | 249 | } | 110 | 220 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 12 | void insert_result_into(IColumn& to) const { | 105 | 12 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 12 | vec.reserve(size()); | 107 | 38 | for (const auto& item : data_set) { | 108 | 38 | vec.push_back(item); | 109 | 38 | } | 110 | 12 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 8 | void insert_result_into(IColumn& to) const { | 105 | 8 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 8 | vec.reserve(size()); | 107 | 80 | for (const auto& item : data_set) { | 108 | 80 | vec.push_back(item); | 109 | 80 | } | 110 | 8 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 20 | for (const auto& item : data_set) { | 108 | 20 | vec.push_back(item); | 109 | 20 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 20 | for (const auto& item : data_set) { | 108 | 20 | vec.push_back(item); | 109 | 20 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 20 | for (const auto& item : data_set) { | 108 | 20 | vec.push_back(item); | 109 | 20 | } | 110 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 22 | for (const auto& item : data_set) { | 108 | 22 | vec.push_back(item); | 109 | 22 | } | 110 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 14 | void insert_result_into(IColumn& to) const { | 105 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 14 | vec.reserve(size()); | 107 | 38 | for (const auto& item : data_set) { | 108 | 38 | vec.push_back(item); | 109 | 38 | } | 110 | 14 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 10 | void insert_result_into(IColumn& to) const { | 105 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 10 | vec.reserve(size()); | 107 | 44 | for (const auto& item : data_set) { | 108 | 44 | vec.push_back(item); | 109 | 44 | } | 110 | 10 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 4 | for (const auto& item : data_set) { | 108 | 4 | vec.push_back(item); | 109 | 4 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 4 | for (const auto& item : data_set) { | 108 | 4 | vec.push_back(item); | 109 | 4 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 4 | for (const auto& item : data_set) { | 108 | 4 | vec.push_back(item); | 109 | 4 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 15 | void insert_result_into(IColumn& to) const { | 105 | 15 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 15 | vec.reserve(size()); | 107 | 18 | for (const auto& item : data_set) { | 108 | 18 | vec.push_back(item); | 109 | 18 | } | 110 | 15 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 10 | void insert_result_into(IColumn& to) const { | 105 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 10 | vec.reserve(size()); | 107 | 22 | for (const auto& item : data_set) { | 108 | 22 | vec.push_back(item); | 109 | 22 | } | 110 | 10 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 12 | for (const auto& item : data_set) { | 108 | 12 | vec.push_back(item); | 109 | 12 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 4 | for (const auto& item : data_set) { | 108 | 4 | vec.push_back(item); | 109 | 4 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 8 | for (const auto& item : data_set) { | 108 | 8 | vec.push_back(item); | 109 | 8 | } | 110 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 4 | void insert_result_into(IColumn& to) const { | 105 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 4 | vec.reserve(size()); | 107 | 4 | for (const auto& item : data_set) { | 108 | 4 | vec.push_back(item); | 109 | 4 | } | 110 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 9 | void insert_result_into(IColumn& to) const { | 105 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 9 | vec.reserve(size()); | 107 | 17 | for (const auto& item : data_set) { | 108 | 17 | vec.push_back(item); | 109 | 17 | } | 110 | 9 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 104 | 9 | void insert_result_into(IColumn& to) const { | 105 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 106 | 9 | vec.reserve(size()); | 107 | 13 | for (const auto& item : data_set) { | 108 | 13 | vec.push_back(item); | 109 | 13 | } | 110 | 9 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE18insert_result_intoERNS_7IColumnE |
111 | | |
112 | | void reset() { data_set.clear(); } |
113 | | }; |
114 | | |
115 | | template <PrimitiveType T, bool HasLimit> |
116 | | requires(is_string_type(T)) |
117 | | struct AggregateFunctionCollectSetData<T, HasLimit> { |
118 | | static constexpr PrimitiveType PType = T; |
119 | | using ElementType = StringRef; |
120 | | using ColVecType = ColumnString; |
121 | | using SelfType = AggregateFunctionCollectSetData<T, HasLimit>; |
122 | | using Set = phmap::flat_hash_set<ElementType>; |
123 | | Set data_set; |
124 | | Int64 max_size = -1; |
125 | | |
126 | 830 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 126 | 730 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 126 | 100 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
|
127 | | |
128 | 634 | size_t size() const { return data_set.size(); }_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 128 | 456 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 128 | 178 | size_t size() const { return data_set.size(); } |
|
129 | | |
130 | 366 | void add(const IColumn& column, size_t row_num, Arena& arena) { |
131 | 366 | auto key = column.get_data_at(row_num); |
132 | 366 | key.data = arena.insert(key.data, key.size); |
133 | 366 | data_set.insert(key); |
134 | 366 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 130 | 346 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 131 | 346 | auto key = column.get_data_at(row_num); | 132 | 346 | key.data = arena.insert(key.data, key.size); | 133 | 346 | data_set.insert(key); | 134 | 346 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 130 | 20 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 131 | 20 | auto key = column.get_data_at(row_num); | 132 | 20 | key.data = arena.insert(key.data, key.size); | 133 | 20 | data_set.insert(key); | 134 | 20 | } |
|
135 | | |
136 | 242 | void merge(const SelfType& rhs, Arena& arena) { |
137 | 242 | if (max_size == -1) { |
138 | 242 | max_size = rhs.max_size; |
139 | 242 | } |
140 | 242 | max_size = rhs.max_size; |
141 | | |
142 | 281 | for (const auto& rhs_elem : rhs.data_set) { |
143 | 281 | if constexpr (HasLimit) { |
144 | 16 | if (size() >= max_size) { |
145 | 0 | return; |
146 | 0 | } |
147 | 16 | } |
148 | 16 | StringRef key = rhs_elem; |
149 | 281 | key.data = arena.insert(key.data, key.size); |
150 | 281 | data_set.insert(key); |
151 | 281 | } |
152 | 242 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 136 | 226 | void merge(const SelfType& rhs, Arena& arena) { | 137 | 226 | if (max_size == -1) { | 138 | 226 | max_size = rhs.max_size; | 139 | 226 | } | 140 | 226 | max_size = rhs.max_size; | 141 | | | 142 | 265 | for (const auto& rhs_elem : rhs.data_set) { | 143 | | if constexpr (HasLimit) { | 144 | | if (size() >= max_size) { | 145 | | return; | 146 | | } | 147 | | } | 148 | 265 | StringRef key = rhs_elem; | 149 | 265 | key.data = arena.insert(key.data, key.size); | 150 | 265 | data_set.insert(key); | 151 | 265 | } | 152 | 226 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 136 | 16 | void merge(const SelfType& rhs, Arena& arena) { | 137 | 16 | if (max_size == -1) { | 138 | 16 | max_size = rhs.max_size; | 139 | 16 | } | 140 | 16 | max_size = rhs.max_size; | 141 | | | 142 | 16 | for (const auto& rhs_elem : rhs.data_set) { | 143 | 16 | if constexpr (HasLimit) { | 144 | 16 | if (size() >= max_size) { | 145 | 0 | return; | 146 | 0 | } | 147 | 16 | } | 148 | 16 | StringRef key = rhs_elem; | 149 | 16 | key.data = arena.insert(key.data, key.size); | 150 | 16 | data_set.insert(key); | 151 | 16 | } | 152 | 16 | } |
|
153 | | |
154 | 236 | void write(BufferWritable& buf) const { |
155 | 236 | buf.write_var_uint(size()); |
156 | 275 | for (const auto& elem : data_set) { |
157 | 275 | buf.write_binary(elem); |
158 | 275 | } |
159 | 236 | write_var_int(max_size, buf); |
160 | 236 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 154 | 220 | void write(BufferWritable& buf) const { | 155 | 220 | buf.write_var_uint(size()); | 156 | 259 | for (const auto& elem : data_set) { | 157 | 259 | buf.write_binary(elem); | 158 | 259 | } | 159 | 220 | write_var_int(max_size, buf); | 160 | 220 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 154 | 16 | void write(BufferWritable& buf) const { | 155 | 16 | buf.write_var_uint(size()); | 156 | 16 | for (const auto& elem : data_set) { | 157 | 16 | buf.write_binary(elem); | 158 | 16 | } | 159 | 16 | write_var_int(max_size, buf); | 160 | 16 | } |
|
161 | | |
162 | 242 | void read(BufferReadable& buf) { |
163 | 242 | UInt64 size; |
164 | 242 | buf.read_var_uint(size); |
165 | 242 | StringRef ref; |
166 | 523 | for (size_t i = 0; i < size; ++i) { |
167 | 281 | buf.read_binary(ref); |
168 | 281 | data_set.insert(ref); |
169 | 281 | } |
170 | 242 | read_var_int(max_size, buf); |
171 | 242 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 162 | 226 | void read(BufferReadable& buf) { | 163 | 226 | UInt64 size; | 164 | 226 | buf.read_var_uint(size); | 165 | 226 | StringRef ref; | 166 | 491 | for (size_t i = 0; i < size; ++i) { | 167 | 265 | buf.read_binary(ref); | 168 | 265 | data_set.insert(ref); | 169 | 265 | } | 170 | 226 | read_var_int(max_size, buf); | 171 | 226 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 162 | 16 | void read(BufferReadable& buf) { | 163 | 16 | UInt64 size; | 164 | 16 | buf.read_var_uint(size); | 165 | 16 | StringRef ref; | 166 | 32 | for (size_t i = 0; i < size; ++i) { | 167 | 16 | buf.read_binary(ref); | 168 | 16 | data_set.insert(ref); | 169 | 16 | } | 170 | 16 | read_var_int(max_size, buf); | 171 | 16 | } |
|
172 | | |
173 | 256 | void insert_result_into(IColumn& to) const { |
174 | 256 | auto& vec = assert_cast<ColVecType&>(to); |
175 | 256 | vec.reserve(size()); |
176 | 328 | for (const auto& item : data_set) { |
177 | 328 | vec.insert_data(item.data, item.size); |
178 | 328 | } |
179 | 256 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 173 | 236 | void insert_result_into(IColumn& to) const { | 174 | 236 | auto& vec = assert_cast<ColVecType&>(to); | 175 | 236 | vec.reserve(size()); | 176 | 308 | for (const auto& item : data_set) { | 177 | 308 | vec.insert_data(item.data, item.size); | 178 | 308 | } | 179 | 236 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 173 | 20 | void insert_result_into(IColumn& to) const { | 174 | 20 | auto& vec = assert_cast<ColVecType&>(to); | 175 | 20 | vec.reserve(size()); | 176 | 20 | for (const auto& item : data_set) { | 177 | 20 | vec.insert_data(item.data, item.size); | 178 | 20 | } | 179 | 20 | } |
|
180 | | |
181 | | void reset() { data_set.clear(); } |
182 | | }; |
183 | | |
184 | | template <PrimitiveType T, bool HasLimit> |
185 | | struct AggregateFunctionCollectListData { |
186 | | static constexpr PrimitiveType PType = T; |
187 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
188 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
189 | | using SelfType = AggregateFunctionCollectListData<T, HasLimit>; |
190 | | PaddedPODArray<ElementType> data; |
191 | | Int64 max_size = -1; |
192 | | |
193 | 1.47k | AggregateFunctionCollectListData(const DataTypes& argument_types) {}_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 31 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 92 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 488 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 71 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 31 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 31 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 34 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 10 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 4 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 12 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 62 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 60 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 23 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 24 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 23 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 152 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 45 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 24 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 24 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 24 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 24 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 59 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 193 | 60 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE |
194 | | |
195 | 2.00k | size_t size() const { return data.size(); }_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv Line | Count | Source | 195 | 26 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 195 | 150 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 195 | 32 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 195 | 538 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 195 | 84 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 195 | 34 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Line | Count | Source | 195 | 26 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Line | Count | Source | 195 | 26 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Line | Count | Source | 195 | 28 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv Line | Count | Source | 195 | 12 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 195 | 12 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4sizeEv Line | Count | Source | 195 | 16 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4sizeEv Line | Count | Source | 195 | 54 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 195 | 54 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE4sizeEv Line | Count | Source | 195 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Line | Count | Source | 195 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv Line | Count | Source | 195 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 195 | 231 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 195 | 113 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Line | Count | Source | 195 | 52 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Line | Count | Source | 195 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Line | Count | Source | 195 | 48 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Line | Count | Source | 195 | 44 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE4sizeEv Line | Count | Source | 195 | 127 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Line | Count | Source | 195 | 123 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4sizeEv |
196 | | |
197 | 1.07k | void add(const IColumn& column, size_t row_num) { |
198 | 1.07k | const auto& vec = |
199 | 1.07k | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); |
200 | 1.07k | data.push_back(vec[row_num]); |
201 | 1.07k | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 38 | void add(const IColumn& column, size_t row_num) { | 198 | 38 | const auto& vec = | 199 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 38 | data.push_back(vec[row_num]); | 201 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 62 | void add(const IColumn& column, size_t row_num) { | 198 | 62 | const auto& vec = | 199 | 62 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 62 | data.push_back(vec[row_num]); | 201 | 62 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 38 | void add(const IColumn& column, size_t row_num) { | 198 | 38 | const auto& vec = | 199 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 38 | data.push_back(vec[row_num]); | 201 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 225 | void add(const IColumn& column, size_t row_num) { | 198 | 225 | const auto& vec = | 199 | 225 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 225 | data.push_back(vec[row_num]); | 201 | 225 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 80 | void add(const IColumn& column, size_t row_num) { | 198 | 80 | const auto& vec = | 199 | 80 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 80 | data.push_back(vec[row_num]); | 201 | 80 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 116 | void add(const IColumn& column, size_t row_num) { | 198 | 116 | const auto& vec = | 199 | 116 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 116 | data.push_back(vec[row_num]); | 201 | 116 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 38 | void add(const IColumn& column, size_t row_num) { | 198 | 38 | const auto& vec = | 199 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 38 | data.push_back(vec[row_num]); | 201 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 38 | void add(const IColumn& column, size_t row_num) { | 198 | 38 | const auto& vec = | 199 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 38 | data.push_back(vec[row_num]); | 201 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 48 | void add(const IColumn& column, size_t row_num) { | 198 | 48 | const auto& vec = | 199 | 48 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 48 | data.push_back(vec[row_num]); | 201 | 48 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 24 | void add(const IColumn& column, size_t row_num) { | 198 | 24 | const auto& vec = | 199 | 24 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 24 | data.push_back(vec[row_num]); | 201 | 24 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 40 | void add(const IColumn& column, size_t row_num) { | 198 | 40 | const auto& vec = | 199 | 40 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 40 | data.push_back(vec[row_num]); | 201 | 40 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 26 | void add(const IColumn& column, size_t row_num) { | 198 | 26 | const auto& vec = | 199 | 26 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 26 | data.push_back(vec[row_num]); | 201 | 26 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 74 | void add(const IColumn& column, size_t row_num) { | 198 | 74 | const auto& vec = | 199 | 74 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 74 | data.push_back(vec[row_num]); | 201 | 74 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 94 | void add(const IColumn& column, size_t row_num) { | 198 | 94 | const auto& vec = | 199 | 94 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 94 | data.push_back(vec[row_num]); | 201 | 94 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 4 | void add(const IColumn& column, size_t row_num) { | 198 | 4 | const auto& vec = | 199 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 4 | data.push_back(vec[row_num]); | 201 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 4 | void add(const IColumn& column, size_t row_num) { | 198 | 4 | const auto& vec = | 199 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 4 | data.push_back(vec[row_num]); | 201 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 4 | void add(const IColumn& column, size_t row_num) { | 198 | 4 | const auto& vec = | 199 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 4 | data.push_back(vec[row_num]); | 201 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 20 | void add(const IColumn& column, size_t row_num) { | 198 | 20 | const auto& vec = | 199 | 20 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 20 | data.push_back(vec[row_num]); | 201 | 20 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 26 | void add(const IColumn& column, size_t row_num) { | 198 | 26 | const auto& vec = | 199 | 26 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 26 | data.push_back(vec[row_num]); | 201 | 26 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 12 | void add(const IColumn& column, size_t row_num) { | 198 | 12 | const auto& vec = | 199 | 12 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 12 | data.push_back(vec[row_num]); | 201 | 12 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 4 | void add(const IColumn& column, size_t row_num) { | 198 | 4 | const auto& vec = | 199 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 4 | data.push_back(vec[row_num]); | 201 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 8 | void add(const IColumn& column, size_t row_num) { | 198 | 8 | const auto& vec = | 199 | 8 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 8 | data.push_back(vec[row_num]); | 201 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 4 | void add(const IColumn& column, size_t row_num) { | 198 | 4 | const auto& vec = | 199 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 4 | data.push_back(vec[row_num]); | 201 | 4 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 25 | void add(const IColumn& column, size_t row_num) { | 198 | 25 | const auto& vec = | 199 | 25 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 25 | data.push_back(vec[row_num]); | 201 | 25 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 197 | 21 | void add(const IColumn& column, size_t row_num) { | 198 | 21 | const auto& vec = | 199 | 21 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 200 | 21 | data.push_back(vec[row_num]); | 201 | 21 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE3addERKNS_7IColumnEm |
202 | | |
203 | 396 | void merge(const SelfType& rhs) { |
204 | 396 | if constexpr (HasLimit) { |
205 | 119 | if (max_size == -1) { |
206 | 101 | max_size = rhs.max_size; |
207 | 101 | } |
208 | 119 | max_size = rhs.max_size; |
209 | 152 | for (auto& rhs_elem : rhs.data) { |
210 | 152 | if (size() >= max_size) { |
211 | 7 | return; |
212 | 7 | } |
213 | 145 | data.push_back(rhs_elem); |
214 | 145 | } |
215 | 277 | } else { |
216 | 277 | data.insert(rhs.data.begin(), rhs.data.end()); |
217 | 277 | } |
218 | 396 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 6 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 6 | } else { | 216 | 6 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 6 | } | 218 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 7 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 7 | } else { | 216 | 7 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 7 | } | 218 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 7 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 7 | } else { | 216 | 7 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 7 | } | 218 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 174 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 174 | } else { | 216 | 174 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 174 | } | 218 | 174 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 19 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 19 | } else { | 216 | 19 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 19 | } | 218 | 19 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 8 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 8 | } else { | 216 | 8 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 8 | } | 218 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 6 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 6 | } else { | 216 | 6 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 6 | } | 218 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 6 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 6 | } else { | 216 | 6 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 6 | } | 218 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 8 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 8 | } else { | 216 | 8 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 8 | } | 218 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 4 | } else { | 216 | 4 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 4 | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 2 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 2 | } else { | 216 | 2 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 2 | } | 218 | 2 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 4 | } else { | 216 | 4 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 4 | } | 218 | 4 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 13 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 13 | } else { | 216 | 13 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 13 | } | 218 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 203 | 13 | void merge(const SelfType& rhs) { | 204 | | if constexpr (HasLimit) { | 205 | | if (max_size == -1) { | 206 | | max_size = rhs.max_size; | 207 | | } | 208 | | max_size = rhs.max_size; | 209 | | for (auto& rhs_elem : rhs.data) { | 210 | | if (size() >= max_size) { | 211 | | return; | 212 | | } | 213 | | data.push_back(rhs_elem); | 214 | | } | 215 | 13 | } else { | 216 | 13 | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | 13 | } | 218 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 4 | for (auto& rhs_elem : rhs.data) { | 210 | 4 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 4 | data.push_back(rhs_elem); | 214 | 4 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 4 | for (auto& rhs_elem : rhs.data) { | 210 | 4 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 4 | data.push_back(rhs_elem); | 214 | 4 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 4 | for (auto& rhs_elem : rhs.data) { | 210 | 4 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 4 | data.push_back(rhs_elem); | 214 | 4 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 54 | void merge(const SelfType& rhs) { | 204 | 54 | if constexpr (HasLimit) { | 205 | 54 | if (max_size == -1) { | 206 | 46 | max_size = rhs.max_size; | 207 | 46 | } | 208 | 54 | max_size = rhs.max_size; | 209 | 59 | for (auto& rhs_elem : rhs.data) { | 210 | 59 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 59 | data.push_back(rhs_elem); | 214 | 59 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 54 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 11 | void merge(const SelfType& rhs) { | 204 | 11 | if constexpr (HasLimit) { | 205 | 11 | if (max_size == -1) { | 206 | 8 | max_size = rhs.max_size; | 207 | 8 | } | 208 | 11 | max_size = rhs.max_size; | 209 | 17 | for (auto& rhs_elem : rhs.data) { | 210 | 17 | if (size() >= max_size) { | 211 | 1 | return; | 212 | 1 | } | 213 | 16 | data.push_back(rhs_elem); | 214 | 16 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 11 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 12 | for (auto& rhs_elem : rhs.data) { | 210 | 12 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 12 | data.push_back(rhs_elem); | 214 | 12 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 4 | for (auto& rhs_elem : rhs.data) { | 210 | 4 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 4 | data.push_back(rhs_elem); | 214 | 4 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 8 | for (auto& rhs_elem : rhs.data) { | 210 | 8 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 8 | data.push_back(rhs_elem); | 214 | 8 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 4 | void merge(const SelfType& rhs) { | 204 | 4 | if constexpr (HasLimit) { | 205 | 4 | if (max_size == -1) { | 206 | 4 | max_size = rhs.max_size; | 207 | 4 | } | 208 | 4 | max_size = rhs.max_size; | 209 | 4 | for (auto& rhs_elem : rhs.data) { | 210 | 4 | if (size() >= max_size) { | 211 | 0 | return; | 212 | 0 | } | 213 | 4 | data.push_back(rhs_elem); | 214 | 4 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 4 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 13 | void merge(const SelfType& rhs) { | 204 | 13 | if constexpr (HasLimit) { | 205 | 13 | if (max_size == -1) { | 206 | 10 | max_size = rhs.max_size; | 207 | 10 | } | 208 | 13 | max_size = rhs.max_size; | 209 | 20 | for (auto& rhs_elem : rhs.data) { | 210 | 20 | if (size() >= max_size) { | 211 | 3 | return; | 212 | 3 | } | 213 | 17 | data.push_back(rhs_elem); | 214 | 17 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Line | Count | Source | 203 | 13 | void merge(const SelfType& rhs) { | 204 | 13 | if constexpr (HasLimit) { | 205 | 13 | if (max_size == -1) { | 206 | 9 | max_size = rhs.max_size; | 207 | 9 | } | 208 | 13 | max_size = rhs.max_size; | 209 | 16 | for (auto& rhs_elem : rhs.data) { | 210 | 16 | if (size() >= max_size) { | 211 | 3 | return; | 212 | 3 | } | 213 | 13 | data.push_back(rhs_elem); | 214 | 13 | } | 215 | | } else { | 216 | | data.insert(rhs.data.begin(), rhs.data.end()); | 217 | | } | 218 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ |
219 | | |
220 | 438 | void write(BufferWritable& buf) const { |
221 | 438 | buf.write_var_uint(size()); |
222 | 438 | buf.write(data.raw_data(), size() * sizeof(ElementType)); |
223 | 438 | write_var_int(max_size, buf); |
224 | 438 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 6 | void write(BufferWritable& buf) const { | 221 | 6 | buf.write_var_uint(size()); | 222 | 6 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 6 | write_var_int(max_size, buf); | 224 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 7 | void write(BufferWritable& buf) const { | 221 | 7 | buf.write_var_uint(size()); | 222 | 7 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 7 | write_var_int(max_size, buf); | 224 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 7 | void write(BufferWritable& buf) const { | 221 | 7 | buf.write_var_uint(size()); | 222 | 7 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 7 | write_var_int(max_size, buf); | 224 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 215 | void write(BufferWritable& buf) const { | 221 | 215 | buf.write_var_uint(size()); | 222 | 215 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 215 | write_var_int(max_size, buf); | 224 | 215 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 21 | void write(BufferWritable& buf) const { | 221 | 21 | buf.write_var_uint(size()); | 222 | 21 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 21 | write_var_int(max_size, buf); | 224 | 21 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 8 | void write(BufferWritable& buf) const { | 221 | 8 | buf.write_var_uint(size()); | 222 | 8 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 8 | write_var_int(max_size, buf); | 224 | 8 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 6 | void write(BufferWritable& buf) const { | 221 | 6 | buf.write_var_uint(size()); | 222 | 6 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 6 | write_var_int(max_size, buf); | 224 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 6 | void write(BufferWritable& buf) const { | 221 | 6 | buf.write_var_uint(size()); | 222 | 6 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 6 | write_var_int(max_size, buf); | 224 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 8 | void write(BufferWritable& buf) const { | 221 | 8 | buf.write_var_uint(size()); | 222 | 8 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 8 | write_var_int(max_size, buf); | 224 | 8 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 2 | void write(BufferWritable& buf) const { | 221 | 2 | buf.write_var_uint(size()); | 222 | 2 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 2 | write_var_int(max_size, buf); | 224 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 13 | void write(BufferWritable& buf) const { | 221 | 13 | buf.write_var_uint(size()); | 222 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 13 | write_var_int(max_size, buf); | 224 | 13 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 13 | void write(BufferWritable& buf) const { | 221 | 13 | buf.write_var_uint(size()); | 222 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 13 | write_var_int(max_size, buf); | 224 | 13 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 52 | void write(BufferWritable& buf) const { | 221 | 52 | buf.write_var_uint(size()); | 222 | 52 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 52 | write_var_int(max_size, buf); | 224 | 52 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 12 | void write(BufferWritable& buf) const { | 221 | 12 | buf.write_var_uint(size()); | 222 | 12 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 12 | write_var_int(max_size, buf); | 224 | 12 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 4 | void write(BufferWritable& buf) const { | 221 | 4 | buf.write_var_uint(size()); | 222 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 4 | write_var_int(max_size, buf); | 224 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 13 | void write(BufferWritable& buf) const { | 221 | 13 | buf.write_var_uint(size()); | 222 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 13 | write_var_int(max_size, buf); | 224 | 13 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 220 | 13 | void write(BufferWritable& buf) const { | 221 | 13 | buf.write_var_uint(size()); | 222 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 223 | 13 | write_var_int(max_size, buf); | 224 | 13 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5writeERNS_14BufferWritableE |
225 | | |
226 | 396 | void read(BufferReadable& buf) { |
227 | 396 | UInt64 rows = 0; |
228 | 396 | buf.read_var_uint(rows); |
229 | 396 | data.resize(rows); |
230 | 396 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); |
231 | 396 | read_var_int(max_size, buf); |
232 | 396 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 6 | void read(BufferReadable& buf) { | 227 | 6 | UInt64 rows = 0; | 228 | 6 | buf.read_var_uint(rows); | 229 | 6 | data.resize(rows); | 230 | 6 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 6 | read_var_int(max_size, buf); | 232 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 7 | void read(BufferReadable& buf) { | 227 | 7 | UInt64 rows = 0; | 228 | 7 | buf.read_var_uint(rows); | 229 | 7 | data.resize(rows); | 230 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 7 | read_var_int(max_size, buf); | 232 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 7 | void read(BufferReadable& buf) { | 227 | 7 | UInt64 rows = 0; | 228 | 7 | buf.read_var_uint(rows); | 229 | 7 | data.resize(rows); | 230 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 7 | read_var_int(max_size, buf); | 232 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 174 | void read(BufferReadable& buf) { | 227 | 174 | UInt64 rows = 0; | 228 | 174 | buf.read_var_uint(rows); | 229 | 174 | data.resize(rows); | 230 | 174 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 174 | read_var_int(max_size, buf); | 232 | 174 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 19 | void read(BufferReadable& buf) { | 227 | 19 | UInt64 rows = 0; | 228 | 19 | buf.read_var_uint(rows); | 229 | 19 | data.resize(rows); | 230 | 19 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 19 | read_var_int(max_size, buf); | 232 | 19 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 8 | void read(BufferReadable& buf) { | 227 | 8 | UInt64 rows = 0; | 228 | 8 | buf.read_var_uint(rows); | 229 | 8 | data.resize(rows); | 230 | 8 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 8 | read_var_int(max_size, buf); | 232 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 6 | void read(BufferReadable& buf) { | 227 | 6 | UInt64 rows = 0; | 228 | 6 | buf.read_var_uint(rows); | 229 | 6 | data.resize(rows); | 230 | 6 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 6 | read_var_int(max_size, buf); | 232 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 6 | void read(BufferReadable& buf) { | 227 | 6 | UInt64 rows = 0; | 228 | 6 | buf.read_var_uint(rows); | 229 | 6 | data.resize(rows); | 230 | 6 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 6 | read_var_int(max_size, buf); | 232 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 8 | void read(BufferReadable& buf) { | 227 | 8 | UInt64 rows = 0; | 228 | 8 | buf.read_var_uint(rows); | 229 | 8 | data.resize(rows); | 230 | 8 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 8 | read_var_int(max_size, buf); | 232 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 2 | void read(BufferReadable& buf) { | 227 | 2 | UInt64 rows = 0; | 228 | 2 | buf.read_var_uint(rows); | 229 | 2 | data.resize(rows); | 230 | 2 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 2 | read_var_int(max_size, buf); | 232 | 2 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 13 | void read(BufferReadable& buf) { | 227 | 13 | UInt64 rows = 0; | 228 | 13 | buf.read_var_uint(rows); | 229 | 13 | data.resize(rows); | 230 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 13 | read_var_int(max_size, buf); | 232 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 13 | void read(BufferReadable& buf) { | 227 | 13 | UInt64 rows = 0; | 228 | 13 | buf.read_var_uint(rows); | 229 | 13 | data.resize(rows); | 230 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 13 | read_var_int(max_size, buf); | 232 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 54 | void read(BufferReadable& buf) { | 227 | 54 | UInt64 rows = 0; | 228 | 54 | buf.read_var_uint(rows); | 229 | 54 | data.resize(rows); | 230 | 54 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 54 | read_var_int(max_size, buf); | 232 | 54 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 11 | void read(BufferReadable& buf) { | 227 | 11 | UInt64 rows = 0; | 228 | 11 | buf.read_var_uint(rows); | 229 | 11 | data.resize(rows); | 230 | 11 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 11 | read_var_int(max_size, buf); | 232 | 11 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 4 | void read(BufferReadable& buf) { | 227 | 4 | UInt64 rows = 0; | 228 | 4 | buf.read_var_uint(rows); | 229 | 4 | data.resize(rows); | 230 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 4 | read_var_int(max_size, buf); | 232 | 4 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 13 | void read(BufferReadable& buf) { | 227 | 13 | UInt64 rows = 0; | 228 | 13 | buf.read_var_uint(rows); | 229 | 13 | data.resize(rows); | 230 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 13 | read_var_int(max_size, buf); | 232 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 226 | 13 | void read(BufferReadable& buf) { | 227 | 13 | UInt64 rows = 0; | 228 | 13 | buf.read_var_uint(rows); | 229 | 13 | data.resize(rows); | 230 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 231 | 13 | read_var_int(max_size, buf); | 232 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4readERNS_14BufferReadableE |
233 | | |
234 | | void reset() { data.clear(); } |
235 | | |
236 | 296 | void insert_result_into(IColumn& to) const { |
237 | 296 | auto& vec = assert_cast<ColVecType&>(to).get_data(); |
238 | 296 | size_t old_size = vec.size(); |
239 | 296 | vec.resize(old_size + size()); |
240 | 296 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); |
241 | 296 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 7 | void insert_result_into(IColumn& to) const { | 237 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 7 | size_t old_size = vec.size(); | 239 | 7 | vec.resize(old_size + size()); | 240 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 68 | void insert_result_into(IColumn& to) const { | 237 | 68 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 68 | size_t old_size = vec.size(); | 239 | 68 | vec.resize(old_size + size()); | 240 | 68 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 68 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 9 | void insert_result_into(IColumn& to) const { | 237 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 9 | size_t old_size = vec.size(); | 239 | 9 | vec.resize(old_size + size()); | 240 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 54 | void insert_result_into(IColumn& to) const { | 237 | 54 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 54 | size_t old_size = vec.size(); | 239 | 54 | vec.resize(old_size + size()); | 240 | 54 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 54 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 21 | void insert_result_into(IColumn& to) const { | 237 | 21 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 21 | size_t old_size = vec.size(); | 239 | 21 | vec.resize(old_size + size()); | 240 | 21 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 21 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 9 | void insert_result_into(IColumn& to) const { | 237 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 9 | size_t old_size = vec.size(); | 239 | 9 | vec.resize(old_size + size()); | 240 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 7 | void insert_result_into(IColumn& to) const { | 237 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 7 | size_t old_size = vec.size(); | 239 | 7 | vec.resize(old_size + size()); | 240 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 7 | void insert_result_into(IColumn& to) const { | 237 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 7 | size_t old_size = vec.size(); | 239 | 7 | vec.resize(old_size + size()); | 240 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 6 | void insert_result_into(IColumn& to) const { | 237 | 6 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 6 | size_t old_size = vec.size(); | 239 | 6 | vec.resize(old_size + size()); | 240 | 6 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 2 | void insert_result_into(IColumn& to) const { | 237 | 2 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 2 | size_t old_size = vec.size(); | 239 | 2 | vec.resize(old_size + size()); | 240 | 2 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 14 | void insert_result_into(IColumn& to) const { | 237 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 14 | size_t old_size = vec.size(); | 239 | 14 | vec.resize(old_size + size()); | 240 | 14 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 14 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 14 | void insert_result_into(IColumn& to) const { | 237 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 14 | size_t old_size = vec.size(); | 239 | 14 | vec.resize(old_size + size()); | 240 | 14 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 14 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 14 | void insert_result_into(IColumn& to) const { | 237 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 14 | size_t old_size = vec.size(); | 239 | 14 | vec.resize(old_size + size()); | 240 | 14 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 14 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 10 | void insert_result_into(IColumn& to) const { | 237 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 10 | size_t old_size = vec.size(); | 239 | 10 | vec.resize(old_size + size()); | 240 | 10 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 10 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 4 | void insert_result_into(IColumn& to) const { | 237 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 4 | size_t old_size = vec.size(); | 239 | 4 | vec.resize(old_size + size()); | 240 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 9 | void insert_result_into(IColumn& to) const { | 237 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 9 | size_t old_size = vec.size(); | 239 | 9 | vec.resize(old_size + size()); | 240 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 236 | 9 | void insert_result_into(IColumn& to) const { | 237 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 238 | 9 | size_t old_size = vec.size(); | 239 | 9 | vec.resize(old_size + size()); | 240 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 241 | 9 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE18insert_result_intoERNS_7IColumnE |
242 | | }; |
243 | | |
244 | | template <PrimitiveType T, bool HasLimit> |
245 | | requires(is_string_type(T)) |
246 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
247 | | static constexpr PrimitiveType PType = T; |
248 | | using ElementType = StringRef; |
249 | | using ColVecType = ColumnString; |
250 | | MutableColumnPtr data; |
251 | | Int64 max_size = -1; |
252 | | |
253 | 259 | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
254 | 259 | data = ColVecType::create(); |
255 | 259 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 253 | 165 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 254 | 165 | data = ColVecType::create(); | 255 | 165 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 253 | 94 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 254 | 94 | data = ColVecType::create(); | 255 | 94 | } |
|
256 | | |
257 | 242 | size_t size() const { return data->size(); }_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 257 | 74 | size_t size() const { return data->size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 257 | 168 | size_t size() const { return data->size(); } |
|
258 | | |
259 | 1.73k | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); }_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 259 | 1.71k | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 259 | 16 | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
|
260 | | |
261 | 43 | void merge(const AggregateFunctionCollectListData& rhs) { |
262 | 43 | if constexpr (HasLimit) { |
263 | 16 | if (max_size == -1) { |
264 | 16 | max_size = rhs.max_size; |
265 | 16 | } |
266 | 16 | max_size = rhs.max_size; |
267 | | |
268 | 16 | data->insert_range_from(*rhs.data, 0, |
269 | 16 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); |
270 | 27 | } else { |
271 | 27 | data->insert_range_from(*rhs.data, 0, rhs.size()); |
272 | 27 | } |
273 | 43 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_ Line | Count | Source | 261 | 27 | void merge(const AggregateFunctionCollectListData& rhs) { | 262 | | if constexpr (HasLimit) { | 263 | | if (max_size == -1) { | 264 | | max_size = rhs.max_size; | 265 | | } | 266 | | max_size = rhs.max_size; | 267 | | | 268 | | data->insert_range_from(*rhs.data, 0, | 269 | | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 270 | 27 | } else { | 271 | 27 | data->insert_range_from(*rhs.data, 0, rhs.size()); | 272 | 27 | } | 273 | 27 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_ Line | Count | Source | 261 | 16 | void merge(const AggregateFunctionCollectListData& rhs) { | 262 | 16 | if constexpr (HasLimit) { | 263 | 16 | if (max_size == -1) { | 264 | 16 | max_size = rhs.max_size; | 265 | 16 | } | 266 | 16 | max_size = rhs.max_size; | 267 | | | 268 | 16 | data->insert_range_from(*rhs.data, 0, | 269 | 16 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 270 | | } else { | 271 | | data->insert_range_from(*rhs.data, 0, rhs.size()); | 272 | | } | 273 | 16 | } |
|
274 | | |
275 | 43 | void write(BufferWritable& buf) const { |
276 | 43 | auto& col = assert_cast<ColVecType&>(*data); |
277 | | |
278 | 43 | buf.write_var_uint(col.size()); |
279 | 43 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); |
280 | | |
281 | 43 | buf.write_var_uint(col.get_chars().size()); |
282 | 43 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); |
283 | 43 | write_var_int(max_size, buf); |
284 | 43 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 275 | 27 | void write(BufferWritable& buf) const { | 276 | 27 | auto& col = assert_cast<ColVecType&>(*data); | 277 | | | 278 | 27 | buf.write_var_uint(col.size()); | 279 | 27 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 280 | | | 281 | 27 | buf.write_var_uint(col.get_chars().size()); | 282 | 27 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 283 | 27 | write_var_int(max_size, buf); | 284 | 27 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 275 | 16 | void write(BufferWritable& buf) const { | 276 | 16 | auto& col = assert_cast<ColVecType&>(*data); | 277 | | | 278 | 16 | buf.write_var_uint(col.size()); | 279 | 16 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 280 | | | 281 | 16 | buf.write_var_uint(col.get_chars().size()); | 282 | 16 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 283 | 16 | write_var_int(max_size, buf); | 284 | 16 | } |
|
285 | | |
286 | 43 | void read(BufferReadable& buf) { |
287 | 43 | auto& col = assert_cast<ColVecType&>(*data); |
288 | 43 | UInt64 offs_size = 0; |
289 | 43 | buf.read_var_uint(offs_size); |
290 | 43 | col.get_offsets().resize(offs_size); |
291 | 43 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), |
292 | 43 | offs_size * sizeof(IColumn::Offset)); |
293 | | |
294 | 43 | UInt64 chars_size = 0; |
295 | 43 | buf.read_var_uint(chars_size); |
296 | 43 | col.get_chars().resize(chars_size); |
297 | 43 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); |
298 | 43 | read_var_int(max_size, buf); |
299 | 43 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 286 | 27 | void read(BufferReadable& buf) { | 287 | 27 | auto& col = assert_cast<ColVecType&>(*data); | 288 | 27 | UInt64 offs_size = 0; | 289 | 27 | buf.read_var_uint(offs_size); | 290 | 27 | col.get_offsets().resize(offs_size); | 291 | 27 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 292 | 27 | offs_size * sizeof(IColumn::Offset)); | 293 | | | 294 | 27 | UInt64 chars_size = 0; | 295 | 27 | buf.read_var_uint(chars_size); | 296 | 27 | col.get_chars().resize(chars_size); | 297 | 27 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 298 | 27 | read_var_int(max_size, buf); | 299 | 27 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 286 | 16 | void read(BufferReadable& buf) { | 287 | 16 | auto& col = assert_cast<ColVecType&>(*data); | 288 | 16 | UInt64 offs_size = 0; | 289 | 16 | buf.read_var_uint(offs_size); | 290 | 16 | col.get_offsets().resize(offs_size); | 291 | 16 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 292 | 16 | offs_size * sizeof(IColumn::Offset)); | 293 | | | 294 | 16 | UInt64 chars_size = 0; | 295 | 16 | buf.read_var_uint(chars_size); | 296 | 16 | col.get_chars().resize(chars_size); | 297 | 16 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 298 | 16 | read_var_int(max_size, buf); | 299 | 16 | } |
|
300 | | |
301 | | void reset() { data->clear(); } |
302 | | |
303 | 63 | void insert_result_into(IColumn& to) const { |
304 | 63 | auto& to_str = assert_cast<ColVecType&>(to); |
305 | 63 | to_str.insert_range_from(*data, 0, size()); |
306 | 63 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 303 | 47 | void insert_result_into(IColumn& to) const { | 304 | 47 | auto& to_str = assert_cast<ColVecType&>(to); | 305 | 47 | to_str.insert_range_from(*data, 0, size()); | 306 | 47 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 303 | 16 | void insert_result_into(IColumn& to) const { | 304 | 16 | auto& to_str = assert_cast<ColVecType&>(to); | 305 | 16 | to_str.insert_range_from(*data, 0, size()); | 306 | 16 | } |
|
307 | | }; |
308 | | |
309 | | template <PrimitiveType T, bool HasLimit> |
310 | | requires(!is_string_type(T) && !is_int_or_bool(T) && !is_float_or_double(T) && !is_decimal(T) && |
311 | | !is_date_type(T) && !is_ip(T) && !is_timestamptz_type(T)) |
312 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
313 | | static constexpr PrimitiveType PType = T; |
314 | | using ElementType = StringRef; |
315 | | using Self = AggregateFunctionCollectListData<T, HasLimit>; |
316 | | DataTypeSerDeSPtr serde; // for complex serialize && deserialize from multi BE |
317 | | MutableColumnPtr column_data; |
318 | | Int64 max_size = -1; |
319 | | |
320 | 1.21k | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
321 | 1.21k | DataTypePtr column_type = argument_types[0]; |
322 | 1.21k | column_data = column_type->create_column(); |
323 | 1.21k | serde = column_type->get_serde(); |
324 | 1.21k | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 320 | 612 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 321 | 612 | DataTypePtr column_type = argument_types[0]; | 322 | 612 | column_data = column_type->create_column(); | 323 | 612 | serde = column_type->get_serde(); | 324 | 612 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 320 | 600 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 321 | 600 | DataTypePtr column_type = argument_types[0]; | 322 | 600 | column_data = column_type->create_column(); | 323 | 600 | serde = column_type->get_serde(); | 324 | 600 | } |
|
325 | | |
326 | 2.41k | size_t size() const { return column_data->size(); }Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4sizeEv Line | Count | Source | 326 | 618 | size_t size() const { return column_data->size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4sizeEv Line | Count | Source | 326 | 1.79k | size_t size() const { return column_data->size(); } |
|
327 | | |
328 | 2.38k | void add(const IColumn& column, size_t row_num) { column_data->insert_from(column, row_num); }Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 328 | 1.36k | void add(const IColumn& column, size_t row_num) { column_data->insert_from(column, row_num); } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 328 | 1.02k | void add(const IColumn& column, size_t row_num) { column_data->insert_from(column, row_num); } |
|
329 | | |
330 | 6 | void merge(const AggregateFunctionCollectListData& rhs) { |
331 | 6 | if constexpr (HasLimit) { |
332 | 0 | if (max_size == -1) { |
333 | 0 | max_size = rhs.max_size; |
334 | 0 | } |
335 | 0 | max_size = rhs.max_size; |
336 | |
|
337 | 0 | column_data->insert_range_from( |
338 | 0 | *rhs.column_data, 0, |
339 | 0 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); |
340 | 6 | } else { |
341 | 6 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); |
342 | 6 | } |
343 | 6 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5mergeERKS2_ Line | Count | Source | 330 | 6 | void merge(const AggregateFunctionCollectListData& rhs) { | 331 | | if constexpr (HasLimit) { | 332 | | if (max_size == -1) { | 333 | | max_size = rhs.max_size; | 334 | | } | 335 | | max_size = rhs.max_size; | 336 | | | 337 | | column_data->insert_range_from( | 338 | | *rhs.column_data, 0, | 339 | | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 340 | 6 | } else { | 341 | 6 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); | 342 | 6 | } | 343 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5mergeERKS2_ |
344 | | |
345 | 6 | void write(BufferWritable& buf) const { |
346 | 6 | const size_t size = column_data->size(); |
347 | 6 | buf.write_binary(size); |
348 | | |
349 | 6 | DataTypeSerDe::FormatOptions opt; |
350 | 6 | auto tmp_str = ColumnString::create(); |
351 | 6 | VectorBufferWriter tmp_buf(*tmp_str.get()); |
352 | | |
353 | 90 | for (size_t i = 0; i < size; i++) { |
354 | 84 | tmp_str->clear(); |
355 | 84 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { |
356 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
357 | 0 | "Failed to serialize data for " + column_data->get_name() + |
358 | 0 | " error: " + st.to_string()); |
359 | 0 | } |
360 | 84 | tmp_buf.commit(); |
361 | 84 | buf.write_binary(tmp_str->get_data_at(0)); |
362 | 84 | } |
363 | | |
364 | 6 | write_var_int(max_size, buf); |
365 | 6 | } Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 345 | 6 | void write(BufferWritable& buf) const { | 346 | 6 | const size_t size = column_data->size(); | 347 | 6 | buf.write_binary(size); | 348 | | | 349 | 6 | DataTypeSerDe::FormatOptions opt; | 350 | 6 | auto tmp_str = ColumnString::create(); | 351 | 6 | VectorBufferWriter tmp_buf(*tmp_str.get()); | 352 | | | 353 | 90 | for (size_t i = 0; i < size; i++) { | 354 | 84 | tmp_str->clear(); | 355 | 84 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { | 356 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 357 | 0 | "Failed to serialize data for " + column_data->get_name() + | 358 | 0 | " error: " + st.to_string()); | 359 | 0 | } | 360 | 84 | tmp_buf.commit(); | 361 | 84 | buf.write_binary(tmp_str->get_data_at(0)); | 362 | 84 | } | 363 | | | 364 | 6 | write_var_int(max_size, buf); | 365 | 6 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5writeERNS_14BufferWritableE |
366 | | |
367 | 6 | void read(BufferReadable& buf) { |
368 | 6 | size_t size = 0; |
369 | 6 | buf.read_binary(size); |
370 | 6 | column_data->clear(); |
371 | 6 | column_data->reserve(size); |
372 | | |
373 | 6 | StringRef s; |
374 | 6 | DataTypeSerDe::FormatOptions opt; |
375 | 90 | for (size_t i = 0; i < size; i++) { |
376 | 84 | buf.read_binary(s); |
377 | 84 | Slice slice(s.data, s.size); |
378 | 84 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { |
379 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
380 | 0 | "Failed to deserialize data for " + column_data->get_name() + |
381 | 0 | " error: " + st.to_string()); |
382 | 0 | } |
383 | 84 | } |
384 | 6 | read_var_int(max_size, buf); |
385 | 6 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 367 | 6 | void read(BufferReadable& buf) { | 368 | 6 | size_t size = 0; | 369 | 6 | buf.read_binary(size); | 370 | 6 | column_data->clear(); | 371 | 6 | column_data->reserve(size); | 372 | | | 373 | 6 | StringRef s; | 374 | 6 | DataTypeSerDe::FormatOptions opt; | 375 | 90 | for (size_t i = 0; i < size; i++) { | 376 | 84 | buf.read_binary(s); | 377 | 84 | Slice slice(s.data, s.size); | 378 | 84 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { | 379 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 380 | 0 | "Failed to deserialize data for " + column_data->get_name() + | 381 | 0 | " error: " + st.to_string()); | 382 | 0 | } | 383 | 84 | } | 384 | 6 | read_var_int(max_size, buf); | 385 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4readERNS_14BufferReadableE |
386 | | |
387 | | void reset() { column_data->clear(); } |
388 | | |
389 | 1.21k | void insert_result_into(IColumn& to) const { to.insert_range_from(*column_data, 0, size()); }Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 389 | 612 | void insert_result_into(IColumn& to) const { to.insert_range_from(*column_data, 0, size()); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 389 | 600 | void insert_result_into(IColumn& to) const { to.insert_range_from(*column_data, 0, size()); } |
|
390 | | }; |
391 | | |
392 | | template <typename Data, bool HasLimit> |
393 | | class AggregateFunctionCollect final |
394 | | : public IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>, |
395 | | VarargsExpression, |
396 | | NotNullableAggregateFunction { |
397 | | static constexpr bool ENABLE_ARENA = |
398 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_STRING, HasLimit>> || |
399 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_CHAR, HasLimit>> || |
400 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_VARCHAR, HasLimit>>; |
401 | | |
402 | | public: |
403 | | AggregateFunctionCollect(const DataTypes& argument_types_) |
404 | 3.46k | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( |
405 | 3.46k | {argument_types_}), |
406 | 3.46k | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {}_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 11 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 11 | {argument_types_}), | 406 | 11 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 14 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 14 | {argument_types_}), | 406 | 14 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 9 | {argument_types_}), | 406 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 13 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 13 | {argument_types_}), | 406 | 13 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 444 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 444 | {argument_types_}), | 406 | 444 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 998 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 998 | {argument_types_}), | 406 | 998 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 10 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 10 | {argument_types_}), | 406 | 10 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 15 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 15 | {argument_types_}), | 406 | 15 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 10 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 10 | {argument_types_}), | 406 | 10 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 4 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 4 | {argument_types_}), | 406 | 4 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 2 | {argument_types_}), | 406 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 2 | {argument_types_}), | 406 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 6 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 6 | {argument_types_}), | 406 | 6 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 23 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 23 | {argument_types_}), | 406 | 23 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 17 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 17 | {argument_types_}), | 406 | 17 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 23 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 23 | {argument_types_}), | 406 | 23 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 181 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 181 | {argument_types_}), | 406 | 181 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 59 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 59 | {argument_types_}), | 406 | 59 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 609 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 609 | {argument_types_}), | 406 | 609 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 607 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 607 | {argument_types_}), | 406 | 607 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 9 | {argument_types_}), | 406 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 9 | {argument_types_}), | 406 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 8 | {argument_types_}), | 406 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 18 | {argument_types_}), | 406 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 33 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 33 | {argument_types_}), | 406 | 33 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 32 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 32 | {argument_types_}), | 406 | 32 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 404 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 405 | 12 | {argument_types_}), | 406 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
|
407 | | |
408 | 247 | std::string get_name() const override { |
409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, |
410 | 143 | Data>) { |
411 | 143 | return "collect_list"; |
412 | 143 | } else { |
413 | 104 | return "collect_set"; |
414 | 104 | } |
415 | 247 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 20 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | | Data>) { | 411 | | return "collect_list"; | 412 | 20 | } else { | 413 | 20 | return "collect_set"; | 414 | 20 | } | 415 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 71 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | 71 | Data>) { | 411 | 71 | return "collect_list"; | 412 | | } else { | 413 | | return "collect_set"; | 414 | | } | 415 | 71 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 1 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | | Data>) { | 411 | | return "collect_list"; | 412 | 1 | } else { | 413 | 1 | return "collect_set"; | 414 | 1 | } | 415 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 2 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | 2 | Data>) { | 411 | 2 | return "collect_list"; | 412 | | } else { | 413 | | return "collect_set"; | 414 | | } | 415 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 28 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | | Data>) { | 411 | | return "collect_list"; | 412 | 28 | } else { | 413 | 28 | return "collect_set"; | 414 | 28 | } | 415 | 28 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 16 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | 16 | Data>) { | 411 | 16 | return "collect_list"; | 412 | | } else { | 413 | | return "collect_set"; | 414 | | } | 415 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 54 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | | Data>) { | 411 | | return "collect_list"; | 412 | 54 | } else { | 413 | 54 | return "collect_set"; | 414 | 54 | } | 415 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 53 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | 53 | Data>) { | 411 | 53 | return "collect_list"; | 412 | | } else { | 413 | | return "collect_set"; | 414 | | } | 415 | 53 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 1 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | | Data>) { | 411 | | return "collect_list"; | 412 | 1 | } else { | 413 | 1 | return "collect_set"; | 414 | 1 | } | 415 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 408 | 1 | std::string get_name() const override { | 409 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 410 | 1 | Data>) { | 411 | 1 | return "collect_list"; | 412 | | } else { | 413 | | return "collect_set"; | 414 | | } | 415 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE8get_nameB5cxx11Ev |
416 | | |
417 | 1.46k | DataTypePtr get_return_type() const override { return return_type; }_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 19 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 26 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 53 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 56 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 26 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 20 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 8 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 12 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 34 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 44 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 32 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 44 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 103 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 129 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 26 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 22 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 66 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 64 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 417 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
|
418 | | |
419 | | void add(AggregateDataPtr __restrict place, const IColumn** columns, ssize_t row_num, |
420 | 7.48k | Arena& arena) const override { |
421 | 7.48k | auto& data = this->data(place); |
422 | 7.48k | if constexpr (HasLimit) { |
423 | 2.22k | if (data.max_size == -1) { |
424 | 782 | data.max_size = |
425 | 782 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( |
426 | 782 | columns[1]) |
427 | 782 | ->get_element(row_num); |
428 | 782 | } |
429 | 2.22k | if (data.size() >= data.max_size) { |
430 | 888 | return; |
431 | 888 | } |
432 | 2.22k | } |
433 | 1.33k | if constexpr (ENABLE_ARENA) { |
434 | 472 | data.add(*columns[0], row_num, arena); |
435 | 7.01k | } else { |
436 | 7.01k | data.add(*columns[0], row_num); |
437 | 7.01k | } |
438 | 7.48k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 38 | Arena& arena) const override { | 421 | 38 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 38 | } else { | 436 | 38 | data.add(*columns[0], row_num); | 437 | 38 | } | 438 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 25 | Arena& arena) const override { | 421 | 25 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 25 | } else { | 436 | 25 | data.add(*columns[0], row_num); | 437 | 25 | } | 438 | 25 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 62 | Arena& arena) const override { | 421 | 62 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 62 | } else { | 436 | 62 | data.add(*columns[0], row_num); | 437 | 62 | } | 438 | 62 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 38 | Arena& arena) const override { | 421 | 38 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 38 | } else { | 436 | 38 | data.add(*columns[0], row_num); | 437 | 38 | } | 438 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 394 | Arena& arena) const override { | 421 | 394 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 394 | } else { | 436 | 394 | data.add(*columns[0], row_num); | 437 | 394 | } | 438 | 394 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 225 | Arena& arena) const override { | 421 | 225 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 225 | } else { | 436 | 225 | data.add(*columns[0], row_num); | 437 | 225 | } | 438 | 225 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 45 | Arena& arena) const override { | 421 | 45 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 45 | } else { | 436 | 45 | data.add(*columns[0], row_num); | 437 | 45 | } | 438 | 45 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 80 | Arena& arena) const override { | 421 | 80 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 80 | } else { | 436 | 80 | data.add(*columns[0], row_num); | 437 | 80 | } | 438 | 80 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 144 | Arena& arena) const override { | 421 | 144 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 144 | } else { | 436 | 144 | data.add(*columns[0], row_num); | 437 | 144 | } | 438 | 144 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 116 | Arena& arena) const override { | 421 | 116 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 116 | } else { | 436 | 116 | data.add(*columns[0], row_num); | 437 | 116 | } | 438 | 116 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 38 | Arena& arena) const override { | 421 | 38 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 38 | } else { | 436 | 38 | data.add(*columns[0], row_num); | 437 | 38 | } | 438 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 38 | Arena& arena) const override { | 421 | 38 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 38 | } else { | 436 | 38 | data.add(*columns[0], row_num); | 437 | 38 | } | 438 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 48 | Arena& arena) const override { | 421 | 48 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 48 | } else { | 436 | 48 | data.add(*columns[0], row_num); | 437 | 48 | } | 438 | 48 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 44 | Arena& arena) const override { | 421 | 44 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 44 | } else { | 436 | 44 | data.add(*columns[0], row_num); | 437 | 44 | } | 438 | 44 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 40 | Arena& arena) const override { | 421 | 40 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 40 | } else { | 436 | 40 | data.add(*columns[0], row_num); | 437 | 40 | } | 438 | 40 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 26 | Arena& arena) const override { | 421 | 26 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 26 | } else { | 436 | 26 | data.add(*columns[0], row_num); | 437 | 26 | } | 438 | 26 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 54 | Arena& arena) const override { | 421 | 54 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 54 | } else { | 436 | 54 | data.add(*columns[0], row_num); | 437 | 54 | } | 438 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 74 | Arena& arena) const override { | 421 | 74 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 74 | } else { | 436 | 74 | data.add(*columns[0], row_num); | 437 | 74 | } | 438 | 74 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 72 | Arena& arena) const override { | 421 | 72 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 72 | } else { | 436 | 72 | data.add(*columns[0], row_num); | 437 | 72 | } | 438 | 72 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 94 | Arena& arena) const override { | 421 | 94 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 94 | } else { | 436 | 94 | data.add(*columns[0], row_num); | 437 | 94 | } | 438 | 94 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 346 | Arena& arena) const override { | 421 | 346 | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | 346 | if constexpr (ENABLE_ARENA) { | 434 | 346 | data.add(*columns[0], row_num, arena); | 435 | | } else { | 436 | | data.add(*columns[0], row_num); | 437 | | } | 438 | 346 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 1.71k | Arena& arena) const override { | 421 | 1.71k | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 1.71k | } else { | 436 | 1.71k | data.add(*columns[0], row_num); | 437 | 1.71k | } | 438 | 1.71k | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 1.36k | Arena& arena) const override { | 421 | 1.36k | auto& data = this->data(place); | 422 | | if constexpr (HasLimit) { | 423 | | if (data.max_size == -1) { | 424 | | data.max_size = | 425 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | | columns[1]) | 427 | | ->get_element(row_num); | 428 | | } | 429 | | if (data.size() >= data.max_size) { | 430 | | return; | 431 | | } | 432 | | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 1.36k | } else { | 436 | 1.36k | data.add(*columns[0], row_num); | 437 | 1.36k | } | 438 | 1.36k | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 47 | Arena& arena) const override { | 421 | 47 | auto& data = this->data(place); | 422 | 47 | if constexpr (HasLimit) { | 423 | 47 | if (data.max_size == -1) { | 424 | 21 | data.max_size = | 425 | 21 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 21 | columns[1]) | 427 | 21 | ->get_element(row_num); | 428 | 21 | } | 429 | 47 | if (data.size() >= data.max_size) { | 430 | 25 | return; | 431 | 25 | } | 432 | 47 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 47 | } else { | 436 | 47 | data.add(*columns[0], row_num); | 437 | 47 | } | 438 | 47 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 40 | Arena& arena) const override { | 421 | 40 | auto& data = this->data(place); | 422 | 40 | if constexpr (HasLimit) { | 423 | 40 | if (data.max_size == -1) { | 424 | 20 | data.max_size = | 425 | 20 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 20 | columns[1]) | 427 | 20 | ->get_element(row_num); | 428 | 20 | } | 429 | 40 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 40 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 40 | } else { | 436 | 40 | data.add(*columns[0], row_num); | 437 | 40 | } | 438 | 40 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 59 | Arena& arena) const override { | 421 | 59 | auto& data = this->data(place); | 422 | 59 | if constexpr (HasLimit) { | 423 | 59 | if (data.max_size == -1) { | 424 | 15 | data.max_size = | 425 | 15 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 15 | columns[1]) | 427 | 15 | ->get_element(row_num); | 428 | 15 | } | 429 | 59 | if (data.size() >= data.max_size) { | 430 | 32 | return; | 431 | 32 | } | 432 | 59 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 59 | } else { | 436 | 59 | data.add(*columns[0], row_num); | 437 | 59 | } | 438 | 59 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 52 | Arena& arena) const override { | 421 | 52 | auto& data = this->data(place); | 422 | 52 | if constexpr (HasLimit) { | 423 | 52 | if (data.max_size == -1) { | 424 | 14 | data.max_size = | 425 | 14 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 14 | columns[1]) | 427 | 14 | ->get_element(row_num); | 428 | 14 | } | 429 | 52 | if (data.size() >= data.max_size) { | 430 | 26 | return; | 431 | 26 | } | 432 | 52 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 52 | } else { | 436 | 52 | data.add(*columns[0], row_num); | 437 | 52 | } | 438 | 52 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 8 | return; | 431 | 8 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 12 | return; | 431 | 12 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 12 | return; | 431 | 12 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 16 | return; | 431 | 16 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 24 | Arena& arena) const override { | 421 | 24 | auto& data = this->data(place); | 422 | 24 | if constexpr (HasLimit) { | 423 | 24 | if (data.max_size == -1) { | 424 | 4 | data.max_size = | 425 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 4 | columns[1]) | 427 | 4 | ->get_element(row_num); | 428 | 4 | } | 429 | 24 | if (data.size() >= data.max_size) { | 430 | 20 | return; | 431 | 20 | } | 432 | 24 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 24 | } else { | 436 | 24 | data.add(*columns[0], row_num); | 437 | 24 | } | 438 | 24 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 63 | Arena& arena) const override { | 421 | 63 | auto& data = this->data(place); | 422 | 63 | if constexpr (HasLimit) { | 423 | 63 | if (data.max_size == -1) { | 424 | 12 | data.max_size = | 425 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 12 | columns[1]) | 427 | 12 | ->get_element(row_num); | 428 | 12 | } | 429 | 63 | if (data.size() >= data.max_size) { | 430 | 34 | return; | 431 | 34 | } | 432 | 63 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 63 | } else { | 436 | 63 | data.add(*columns[0], row_num); | 437 | 63 | } | 438 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 63 | Arena& arena) const override { | 421 | 63 | auto& data = this->data(place); | 422 | 63 | if constexpr (HasLimit) { | 423 | 63 | if (data.max_size == -1) { | 424 | 12 | data.max_size = | 425 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 12 | columns[1]) | 427 | 12 | ->get_element(row_num); | 428 | 12 | } | 429 | 63 | if (data.size() >= data.max_size) { | 430 | 38 | return; | 431 | 38 | } | 432 | 63 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 63 | } else { | 436 | 63 | data.add(*columns[0], row_num); | 437 | 63 | } | 438 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 63 | Arena& arena) const override { | 421 | 63 | auto& data = this->data(place); | 422 | 63 | if constexpr (HasLimit) { | 423 | 63 | if (data.max_size == -1) { | 424 | 12 | data.max_size = | 425 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 12 | columns[1]) | 427 | 12 | ->get_element(row_num); | 428 | 12 | } | 429 | 63 | if (data.size() >= data.max_size) { | 430 | 41 | return; | 431 | 41 | } | 432 | 63 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 63 | } else { | 436 | 63 | data.add(*columns[0], row_num); | 437 | 63 | } | 438 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 63 | Arena& arena) const override { | 421 | 63 | auto& data = this->data(place); | 422 | 63 | if constexpr (HasLimit) { | 423 | 63 | if (data.max_size == -1) { | 424 | 12 | data.max_size = | 425 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 12 | columns[1]) | 427 | 12 | ->get_element(row_num); | 428 | 12 | } | 429 | 63 | if (data.size() >= data.max_size) { | 430 | 42 | return; | 431 | 42 | } | 432 | 63 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 63 | } else { | 436 | 63 | data.add(*columns[0], row_num); | 437 | 63 | } | 438 | 63 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 126 | Arena& arena) const override { | 421 | 126 | auto& data = this->data(place); | 422 | 126 | if constexpr (HasLimit) { | 423 | 126 | if (data.max_size == -1) { | 424 | 20 | data.max_size = | 425 | 20 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 20 | columns[1]) | 427 | 20 | ->get_element(row_num); | 428 | 20 | } | 429 | 126 | if (data.size() >= data.max_size) { | 430 | 106 | return; | 431 | 106 | } | 432 | 126 | } | 433 | 126 | if constexpr (ENABLE_ARENA) { | 434 | 126 | data.add(*columns[0], row_num, arena); | 435 | | } else { | 436 | | data.add(*columns[0], row_num); | 437 | | } | 438 | 126 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 120 | Arena& arena) const override { | 421 | 120 | auto& data = this->data(place); | 422 | 120 | if constexpr (HasLimit) { | 423 | 120 | if (data.max_size == -1) { | 424 | 16 | data.max_size = | 425 | 16 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 16 | columns[1]) | 427 | 16 | ->get_element(row_num); | 428 | 16 | } | 429 | 120 | if (data.size() >= data.max_size) { | 430 | 104 | return; | 431 | 104 | } | 432 | 120 | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 120 | } else { | 436 | 120 | data.add(*columns[0], row_num); | 437 | 120 | } | 438 | 120 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 420 | 1.19k | Arena& arena) const override { | 421 | 1.19k | auto& data = this->data(place); | 422 | 1.19k | if constexpr (HasLimit) { | 423 | 1.19k | if (data.max_size == -1) { | 424 | 572 | data.max_size = | 425 | 572 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 426 | 572 | columns[1]) | 427 | 572 | ->get_element(row_num); | 428 | 572 | } | 429 | 1.19k | if (data.size() >= data.max_size) { | 430 | 172 | return; | 431 | 172 | } | 432 | 1.19k | } | 433 | | if constexpr (ENABLE_ARENA) { | 434 | | data.add(*columns[0], row_num, arena); | 435 | 1.19k | } else { | 436 | 1.19k | data.add(*columns[0], row_num); | 437 | 1.19k | } | 438 | 1.19k | } |
|
439 | | |
440 | | void merge(AggregateDataPtr __restrict place, ConstAggregateDataPtr rhs, |
441 | 1.19k | Arena& arena) const override { |
442 | 1.19k | auto& data = this->data(place); |
443 | 1.19k | const auto& rhs_data = this->data(rhs); |
444 | 1.19k | if constexpr (ENABLE_ARENA) { |
445 | 242 | data.merge(rhs_data, arena); |
446 | 956 | } else { |
447 | 956 | data.merge(rhs_data); |
448 | 956 | } |
449 | 1.19k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 7 | Arena& arena) const override { | 442 | 7 | auto& data = this->data(place); | 443 | 7 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 7 | } else { | 447 | 7 | data.merge(rhs_data); | 448 | 7 | } | 449 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 5 | Arena& arena) const override { | 442 | 5 | auto& data = this->data(place); | 443 | 5 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 5 | } else { | 447 | 5 | data.merge(rhs_data); | 448 | 5 | } | 449 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 7 | Arena& arena) const override { | 442 | 7 | auto& data = this->data(place); | 443 | 7 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 7 | } else { | 447 | 7 | data.merge(rhs_data); | 448 | 7 | } | 449 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 323 | Arena& arena) const override { | 442 | 323 | auto& data = this->data(place); | 443 | 323 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 323 | } else { | 447 | 323 | data.merge(rhs_data); | 448 | 323 | } | 449 | 323 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 174 | Arena& arena) const override { | 442 | 174 | auto& data = this->data(place); | 443 | 174 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 174 | } else { | 447 | 174 | data.merge(rhs_data); | 448 | 174 | } | 449 | 174 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 11 | Arena& arena) const override { | 442 | 11 | auto& data = this->data(place); | 443 | 11 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 11 | } else { | 447 | 11 | data.merge(rhs_data); | 448 | 11 | } | 449 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 19 | Arena& arena) const override { | 442 | 19 | auto& data = this->data(place); | 443 | 19 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 19 | } else { | 447 | 19 | data.merge(rhs_data); | 448 | 19 | } | 449 | 19 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 8 | Arena& arena) const override { | 442 | 8 | auto& data = this->data(place); | 443 | 8 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 8 | } else { | 447 | 8 | data.merge(rhs_data); | 448 | 8 | } | 449 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 8 | Arena& arena) const override { | 442 | 8 | auto& data = this->data(place); | 443 | 8 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 8 | } else { | 447 | 8 | data.merge(rhs_data); | 448 | 8 | } | 449 | 8 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 2 | Arena& arena) const override { | 442 | 2 | auto& data = this->data(place); | 443 | 2 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 2 | } else { | 447 | 2 | data.merge(rhs_data); | 448 | 2 | } | 449 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 2 | Arena& arena) const override { | 442 | 2 | auto& data = this->data(place); | 443 | 2 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 2 | } else { | 447 | 2 | data.merge(rhs_data); | 448 | 2 | } | 449 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 9 | Arena& arena) const override { | 442 | 9 | auto& data = this->data(place); | 443 | 9 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 9 | } else { | 447 | 9 | data.merge(rhs_data); | 448 | 9 | } | 449 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 9 | Arena& arena) const override { | 442 | 9 | auto& data = this->data(place); | 443 | 9 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 9 | } else { | 447 | 9 | data.merge(rhs_data); | 448 | 9 | } | 449 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 226 | Arena& arena) const override { | 442 | 226 | auto& data = this->data(place); | 443 | 226 | const auto& rhs_data = this->data(rhs); | 444 | 226 | if constexpr (ENABLE_ARENA) { | 445 | 226 | data.merge(rhs_data, arena); | 446 | | } else { | 447 | | data.merge(rhs_data); | 448 | | } | 449 | 226 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 27 | Arena& arena) const override { | 442 | 27 | auto& data = this->data(place); | 443 | 27 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 27 | } else { | 447 | 27 | data.merge(rhs_data); | 448 | 27 | } | 449 | 27 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 6 | Arena& arena) const override { | 442 | 6 | auto& data = this->data(place); | 443 | 6 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 6 | } else { | 447 | 6 | data.merge(rhs_data); | 448 | 6 | } | 449 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 58 | Arena& arena) const override { | 442 | 58 | auto& data = this->data(place); | 443 | 58 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 58 | } else { | 447 | 58 | data.merge(rhs_data); | 448 | 58 | } | 449 | 58 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 54 | Arena& arena) const override { | 442 | 54 | auto& data = this->data(place); | 443 | 54 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 54 | } else { | 447 | 54 | data.merge(rhs_data); | 448 | 54 | } | 449 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 12 | Arena& arena) const override { | 442 | 12 | auto& data = this->data(place); | 443 | 12 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 12 | } else { | 447 | 12 | data.merge(rhs_data); | 448 | 12 | } | 449 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 11 | Arena& arena) const override { | 442 | 11 | auto& data = this->data(place); | 443 | 11 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 11 | } else { | 447 | 11 | data.merge(rhs_data); | 448 | 11 | } | 449 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 4 | Arena& arena) const override { | 442 | 4 | auto& data = this->data(place); | 443 | 4 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 4 | } else { | 447 | 4 | data.merge(rhs_data); | 448 | 4 | } | 449 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 13 | Arena& arena) const override { | 442 | 13 | auto& data = this->data(place); | 443 | 13 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 13 | } else { | 447 | 13 | data.merge(rhs_data); | 448 | 13 | } | 449 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 16 | Arena& arena) const override { | 442 | 16 | auto& data = this->data(place); | 443 | 16 | const auto& rhs_data = this->data(rhs); | 444 | 16 | if constexpr (ENABLE_ARENA) { | 445 | 16 | data.merge(rhs_data, arena); | 446 | | } else { | 447 | | data.merge(rhs_data); | 448 | | } | 449 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 441 | 16 | Arena& arena) const override { | 442 | 16 | auto& data = this->data(place); | 443 | 16 | const auto& rhs_data = this->data(rhs); | 444 | | if constexpr (ENABLE_ARENA) { | 445 | | data.merge(rhs_data, arena); | 446 | 16 | } else { | 447 | 16 | data.merge(rhs_data); | 448 | 16 | } | 449 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE |
450 | | |
451 | 1.27k | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { |
452 | 1.27k | this->data(place).write(buf); |
453 | 1.27k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 7 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 7 | this->data(place).write(buf); | 453 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 5 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 5 | this->data(place).write(buf); | 453 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 7 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 7 | this->data(place).write(buf); | 453 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 362 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 362 | this->data(place).write(buf); | 453 | 362 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 215 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 215 | this->data(place).write(buf); | 453 | 215 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 12 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 12 | this->data(place).write(buf); | 453 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 21 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 21 | this->data(place).write(buf); | 453 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 8 | this->data(place).write(buf); | 453 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 8 | this->data(place).write(buf); | 453 | 8 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 2 | this->data(place).write(buf); | 453 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 2 | this->data(place).write(buf); | 453 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 9 | this->data(place).write(buf); | 453 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 9 | this->data(place).write(buf); | 453 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 220 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 220 | this->data(place).write(buf); | 453 | 220 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 27 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 27 | this->data(place).write(buf); | 453 | 27 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 6 | this->data(place).write(buf); | 453 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 56 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 56 | this->data(place).write(buf); | 453 | 56 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 52 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 52 | this->data(place).write(buf); | 453 | 52 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 12 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 12 | this->data(place).write(buf); | 453 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 4 | this->data(place).write(buf); | 453 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 12 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 12 | this->data(place).write(buf); | 453 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 13 | this->data(place).write(buf); | 453 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 16 | this->data(place).write(buf); | 453 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 451 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 452 | 16 | this->data(place).write(buf); | 453 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE |
454 | | |
455 | | void deserialize(AggregateDataPtr __restrict place, BufferReadable& buf, |
456 | 1.19k | Arena&) const override { |
457 | 1.19k | this->data(place).read(buf); |
458 | 1.19k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 7 | Arena&) const override { | 457 | 7 | this->data(place).read(buf); | 458 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 5 | Arena&) const override { | 457 | 5 | this->data(place).read(buf); | 458 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 7 | Arena&) const override { | 457 | 7 | this->data(place).read(buf); | 458 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 323 | Arena&) const override { | 457 | 323 | this->data(place).read(buf); | 458 | 323 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 174 | Arena&) const override { | 457 | 174 | this->data(place).read(buf); | 458 | 174 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 11 | Arena&) const override { | 457 | 11 | this->data(place).read(buf); | 458 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 19 | Arena&) const override { | 457 | 19 | this->data(place).read(buf); | 458 | 19 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 8 | Arena&) const override { | 457 | 8 | this->data(place).read(buf); | 458 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 8 | Arena&) const override { | 457 | 8 | this->data(place).read(buf); | 458 | 8 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 2 | Arena&) const override { | 457 | 2 | this->data(place).read(buf); | 458 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 2 | Arena&) const override { | 457 | 2 | this->data(place).read(buf); | 458 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 9 | Arena&) const override { | 457 | 9 | this->data(place).read(buf); | 458 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 9 | Arena&) const override { | 457 | 9 | this->data(place).read(buf); | 458 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 226 | Arena&) const override { | 457 | 226 | this->data(place).read(buf); | 458 | 226 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 27 | Arena&) const override { | 457 | 27 | this->data(place).read(buf); | 458 | 27 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 6 | Arena&) const override { | 457 | 6 | this->data(place).read(buf); | 458 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 58 | Arena&) const override { | 457 | 58 | this->data(place).read(buf); | 458 | 58 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 54 | Arena&) const override { | 457 | 54 | this->data(place).read(buf); | 458 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 12 | Arena&) const override { | 457 | 12 | this->data(place).read(buf); | 458 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 11 | Arena&) const override { | 457 | 11 | this->data(place).read(buf); | 458 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 4 | Arena&) const override { | 457 | 4 | this->data(place).read(buf); | 458 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 13 | Arena&) const override { | 457 | 13 | this->data(place).read(buf); | 458 | 13 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 16 | Arena&) const override { | 457 | 16 | this->data(place).read(buf); | 458 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 456 | 16 | Arena&) const override { | 457 | 16 | this->data(place).read(buf); | 458 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE |
459 | | |
460 | 2.19k | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
461 | 2.19k | auto& to_arr = assert_cast<ColumnArray&>(to); |
462 | 2.19k | auto& to_nested_col = to_arr.get_data(); |
463 | 2.19k | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); |
464 | 2.19k | this->data(place).insert_result_into(col_null->get_nested_column()); |
465 | 2.19k | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); |
466 | 2.19k | to_arr.get_offsets().push_back(to_nested_col.size()); |
467 | 2.19k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 7 | auto& to_nested_col = to_arr.get_data(); | 463 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 7 | auto& to_nested_col = to_arr.get_data(); | 463 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 68 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 68 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 68 | auto& to_nested_col = to_arr.get_data(); | 463 | 68 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 68 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 68 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 68 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 68 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 6 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 6 | auto& to_nested_col = to_arr.get_data(); | 463 | 6 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 220 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 220 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 220 | auto& to_nested_col = to_arr.get_data(); | 463 | 220 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 220 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 220 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 220 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 220 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 54 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 54 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 54 | auto& to_nested_col = to_arr.get_data(); | 463 | 54 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 54 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 54 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 54 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 12 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 12 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 12 | auto& to_nested_col = to_arr.get_data(); | 463 | 12 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 12 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 12 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 12 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 21 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 21 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 21 | auto& to_nested_col = to_arr.get_data(); | 463 | 21 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 21 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 21 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 21 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 8 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 8 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 8 | auto& to_nested_col = to_arr.get_data(); | 463 | 8 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 8 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 8 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 8 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 7 | auto& to_nested_col = to_arr.get_data(); | 463 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 7 | auto& to_nested_col = to_arr.get_data(); | 463 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 6 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 6 | auto& to_nested_col = to_arr.get_data(); | 463 | 6 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 6 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 2 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 2 | auto& to_nested_col = to_arr.get_data(); | 463 | 2 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 14 | auto& to_nested_col = to_arr.get_data(); | 463 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 14 | auto& to_nested_col = to_arr.get_data(); | 463 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 10 | auto& to_nested_col = to_arr.get_data(); | 463 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 14 | auto& to_nested_col = to_arr.get_data(); | 463 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 14 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 236 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 236 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 236 | auto& to_nested_col = to_arr.get_data(); | 463 | 236 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 236 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 236 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 236 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 236 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 47 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 47 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 47 | auto& to_nested_col = to_arr.get_data(); | 463 | 47 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 47 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 47 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 47 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 47 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 612 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 612 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 612 | auto& to_nested_col = to_arr.get_data(); | 463 | 612 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 612 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 612 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 612 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 612 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 15 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 15 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 15 | auto& to_nested_col = to_arr.get_data(); | 463 | 15 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 15 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 15 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 15 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 15 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 14 | auto& to_nested_col = to_arr.get_data(); | 463 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 10 | auto& to_nested_col = to_arr.get_data(); | 463 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 10 | auto& to_nested_col = to_arr.get_data(); | 463 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 4 | auto& to_nested_col = to_arr.get_data(); | 463 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 9 | auto& to_nested_col = to_arr.get_data(); | 463 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 9 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 20 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 20 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 20 | auto& to_nested_col = to_arr.get_data(); | 463 | 20 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 20 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 20 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 20 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 16 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 16 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 16 | auto& to_nested_col = to_arr.get_data(); | 463 | 16 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 16 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 16 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 16 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 460 | 600 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 461 | 600 | auto& to_arr = assert_cast<ColumnArray&>(to); | 462 | 600 | auto& to_nested_col = to_arr.get_data(); | 463 | 600 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 464 | 600 | this->data(place).insert_result_into(col_null->get_nested_column()); | 465 | 600 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 466 | 600 | to_arr.get_offsets().push_back(to_nested_col.size()); | 467 | 600 | } |
|
468 | | |
469 | | private: |
470 | | DataTypePtr return_type; |
471 | | }; |
472 | | |
473 | | } // namespace doris |