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/io_helper.h" |
45 | | #include "util/var_int.h" |
46 | | |
47 | | namespace doris { |
48 | | template <PrimitiveType T, bool HasLimit> |
49 | | struct AggregateFunctionCollectSetData { |
50 | | static constexpr PrimitiveType PType = T; |
51 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
52 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
53 | | using SelfType = AggregateFunctionCollectSetData; |
54 | | using Set = phmap::flat_hash_set<ElementType>; |
55 | | Set data_set; |
56 | | Int64 max_size = -1; |
57 | | |
58 | 1.94k | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 37 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 34 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 949 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 53 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 35 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 31 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 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 | 58 | 70 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 66 | 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 | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 30 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 129 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 53 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 30 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 31 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 32 | 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 | 58 | 85 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 58 | 82 | 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 |
59 | | |
60 | 897 | size_t size() const { return data_set.size(); }_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv Line | Count | Source | 60 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 60 | 7 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 60 | 6 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 60 | 220 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 60 | 12 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 60 | 8 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Line | Count | Source | 60 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Line | Count | Source | 60 | 4 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Line | Count | Source | 60 | 4 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 60 | 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 | 60 | 14 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 60 | 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 | 60 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Line | Count | Source | 60 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv Line | Count | Source | 60 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 60 | 97 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 60 | 87 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Line | Count | Source | 60 | 40 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Line | Count | Source | 60 | 32 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Line | Count | Source | 60 | 36 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Line | Count | Source | 60 | 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 | 60 | 92 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Line | Count | Source | 60 | 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 |
61 | | |
62 | 1.04k | void add(const IColumn& column, size_t row_num) { |
63 | 1.04k | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) |
64 | 1.04k | .get_data()[row_num]); |
65 | 1.04k | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 24 | void add(const IColumn& column, size_t row_num) { | 63 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 24 | .get_data()[row_num]); | 65 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 25 | void add(const IColumn& column, size_t row_num) { | 63 | 25 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 25 | .get_data()[row_num]); | 65 | 25 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 24 | void add(const IColumn& column, size_t row_num) { | 63 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 24 | .get_data()[row_num]); | 65 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 394 | void add(const IColumn& column, size_t row_num) { | 63 | 394 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 394 | .get_data()[row_num]); | 65 | 394 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 45 | void add(const IColumn& column, size_t row_num) { | 63 | 45 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 45 | .get_data()[row_num]); | 65 | 45 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 144 | void add(const IColumn& column, size_t row_num) { | 63 | 144 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 144 | .get_data()[row_num]); | 65 | 144 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 24 | void add(const IColumn& column, size_t row_num) { | 63 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 24 | .get_data()[row_num]); | 65 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 24 | void add(const IColumn& column, size_t row_num) { | 63 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 24 | .get_data()[row_num]); | 65 | 24 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 24 | void add(const IColumn& column, size_t row_num) { | 63 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 24 | .get_data()[row_num]); | 65 | 24 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 44 | void add(const IColumn& column, size_t row_num) { | 63 | 44 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 44 | .get_data()[row_num]); | 65 | 44 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 54 | void add(const IColumn& column, size_t row_num) { | 63 | 54 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 54 | .get_data()[row_num]); | 65 | 54 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 72 | void add(const IColumn& column, size_t row_num) { | 63 | 72 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 72 | .get_data()[row_num]); | 65 | 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 | 62 | 4 | void add(const IColumn& column, size_t row_num) { | 63 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 4 | .get_data()[row_num]); | 65 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 4 | void add(const IColumn& column, size_t row_num) { | 63 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 4 | .get_data()[row_num]); | 65 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 4 | void add(const IColumn& column, size_t row_num) { | 63 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 4 | .get_data()[row_num]); | 65 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 20 | void add(const IColumn& column, size_t row_num) { | 63 | 20 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 20 | .get_data()[row_num]); | 65 | 20 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 27 | void add(const IColumn& column, size_t row_num) { | 63 | 27 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 27 | .get_data()[row_num]); | 65 | 27 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 16 | void add(const IColumn& column, size_t row_num) { | 63 | 16 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 16 | .get_data()[row_num]); | 65 | 16 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 4 | void add(const IColumn& column, size_t row_num) { | 63 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 4 | .get_data()[row_num]); | 65 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 12 | void add(const IColumn& column, size_t row_num) { | 63 | 12 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 12 | .get_data()[row_num]); | 65 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 4 | void add(const IColumn& column, size_t row_num) { | 63 | 4 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 4 | .get_data()[row_num]); | 65 | 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 | 62 | 29 | void add(const IColumn& column, size_t row_num) { | 63 | 29 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 29 | .get_data()[row_num]); | 65 | 29 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 62 | 22 | void add(const IColumn& column, size_t row_num) { | 63 | 22 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 64 | 22 | .get_data()[row_num]); | 65 | 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 |
66 | | |
67 | 493 | void merge(const SelfType& rhs) { |
68 | 493 | if constexpr (HasLimit) { |
69 | 106 | if (max_size == -1) { |
70 | 89 | max_size = rhs.max_size; |
71 | 89 | } |
72 | | |
73 | 136 | for (auto& rhs_elem : rhs.data_set) { |
74 | 136 | if (size() >= max_size) { |
75 | 8 | return; |
76 | 8 | } |
77 | 128 | data_set.insert(rhs_elem); |
78 | 128 | } |
79 | 387 | } else { |
80 | 387 | data_set.merge(Set(rhs.data_set)); |
81 | 387 | } |
82 | 493 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 4 | } else { | 80 | 4 | data_set.merge(Set(rhs.data_set)); | 81 | 4 | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 6 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 6 | } else { | 80 | 6 | data_set.merge(Set(rhs.data_set)); | 81 | 6 | } | 82 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 5 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 5 | } else { | 80 | 5 | data_set.merge(Set(rhs.data_set)); | 81 | 5 | } | 82 | 5 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 323 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 323 | } else { | 80 | 323 | data_set.merge(Set(rhs.data_set)); | 81 | 323 | } | 82 | 323 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 11 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 11 | } else { | 80 | 11 | data_set.merge(Set(rhs.data_set)); | 81 | 11 | } | 82 | 11 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 6 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 6 | } else { | 80 | 6 | data_set.merge(Set(rhs.data_set)); | 81 | 6 | } | 82 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 4 | } else { | 80 | 4 | data_set.merge(Set(rhs.data_set)); | 81 | 4 | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 4 | } else { | 80 | 4 | data_set.merge(Set(rhs.data_set)); | 81 | 4 | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 4 | } else { | 80 | 4 | data_set.merge(Set(rhs.data_set)); | 81 | 4 | } | 82 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 2 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 2 | } else { | 80 | 2 | data_set.merge(Set(rhs.data_set)); | 81 | 2 | } | 82 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 9 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 9 | } else { | 80 | 9 | data_set.merge(Set(rhs.data_set)); | 81 | 9 | } | 82 | 9 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 67 | 9 | void merge(const SelfType& rhs) { | 68 | | if constexpr (HasLimit) { | 69 | | if (max_size == -1) { | 70 | | max_size = rhs.max_size; | 71 | | } | 72 | | | 73 | | for (auto& rhs_elem : rhs.data_set) { | 74 | | if (size() >= max_size) { | 75 | | return; | 76 | | } | 77 | | data_set.insert(rhs_elem); | 78 | | } | 79 | 9 | } else { | 80 | 9 | data_set.merge(Set(rhs.data_set)); | 81 | 9 | } | 82 | 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 | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 4 | for (auto& rhs_elem : rhs.data_set) { | 74 | 4 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 4 | data_set.insert(rhs_elem); | 78 | 4 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 4 | for (auto& rhs_elem : rhs.data_set) { | 74 | 4 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 4 | data_set.insert(rhs_elem); | 78 | 4 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 4 | for (auto& rhs_elem : rhs.data_set) { | 74 | 4 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 4 | data_set.insert(rhs_elem); | 78 | 4 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 40 | void merge(const SelfType& rhs) { | 68 | 40 | if constexpr (HasLimit) { | 69 | 40 | if (max_size == -1) { | 70 | 34 | max_size = rhs.max_size; | 71 | 34 | } | 72 | | | 73 | 42 | for (auto& rhs_elem : rhs.data_set) { | 74 | 42 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 42 | data_set.insert(rhs_elem); | 78 | 42 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 40 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 12 | void merge(const SelfType& rhs) { | 68 | 12 | if constexpr (HasLimit) { | 69 | 12 | if (max_size == -1) { | 70 | 8 | max_size = rhs.max_size; | 71 | 8 | } | 72 | | | 73 | 18 | for (auto& rhs_elem : rhs.data_set) { | 74 | 18 | if (size() >= max_size) { | 75 | 2 | return; | 76 | 2 | } | 77 | 16 | data_set.insert(rhs_elem); | 78 | 16 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 12 | for (auto& rhs_elem : rhs.data_set) { | 74 | 12 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 12 | data_set.insert(rhs_elem); | 78 | 12 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 4 | for (auto& rhs_elem : rhs.data_set) { | 74 | 4 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 4 | data_set.insert(rhs_elem); | 78 | 4 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 8 | for (auto& rhs_elem : rhs.data_set) { | 74 | 8 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 8 | data_set.insert(rhs_elem); | 78 | 8 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 4 | void merge(const SelfType& rhs) { | 68 | 4 | if constexpr (HasLimit) { | 69 | 4 | if (max_size == -1) { | 70 | 4 | max_size = rhs.max_size; | 71 | 4 | } | 72 | | | 73 | 4 | for (auto& rhs_elem : rhs.data_set) { | 74 | 4 | if (size() >= max_size) { | 75 | 0 | return; | 76 | 0 | } | 77 | 4 | data_set.insert(rhs_elem); | 78 | 4 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 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 | 67 | 13 | void merge(const SelfType& rhs) { | 68 | 13 | if constexpr (HasLimit) { | 69 | 13 | if (max_size == -1) { | 70 | 10 | max_size = rhs.max_size; | 71 | 10 | } | 72 | | | 73 | 20 | for (auto& rhs_elem : rhs.data_set) { | 74 | 20 | if (size() >= max_size) { | 75 | 3 | return; | 76 | 3 | } | 77 | 17 | data_set.insert(rhs_elem); | 78 | 17 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 13 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Line | Count | Source | 67 | 13 | void merge(const SelfType& rhs) { | 68 | 13 | if constexpr (HasLimit) { | 69 | 13 | if (max_size == -1) { | 70 | 9 | max_size = rhs.max_size; | 71 | 9 | } | 72 | | | 73 | 16 | for (auto& rhs_elem : rhs.data_set) { | 74 | 16 | if (size() >= max_size) { | 75 | 3 | return; | 76 | 3 | } | 77 | 13 | data_set.insert(rhs_elem); | 78 | 13 | } | 79 | | } else { | 80 | | data_set.merge(Set(rhs.data_set)); | 81 | | } | 82 | 13 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ |
83 | | |
84 | 537 | void write(BufferWritable& buf) const { |
85 | 537 | buf.write_var_uint(data_set.size()); |
86 | 799 | for (const auto& value : data_set) { |
87 | 799 | buf.write_binary(value); |
88 | 799 | } |
89 | 537 | write_var_int(max_size, buf); |
90 | 537 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 8 | for (const auto& value : data_set) { | 87 | 8 | buf.write_binary(value); | 88 | 8 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 6 | void write(BufferWritable& buf) const { | 85 | 6 | buf.write_var_uint(data_set.size()); | 86 | 17 | for (const auto& value : data_set) { | 87 | 17 | buf.write_binary(value); | 88 | 17 | } | 89 | 6 | write_var_int(max_size, buf); | 90 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 5 | void write(BufferWritable& buf) const { | 85 | 5 | buf.write_var_uint(data_set.size()); | 86 | 20 | for (const auto& value : data_set) { | 87 | 20 | buf.write_binary(value); | 88 | 20 | } | 89 | 5 | write_var_int(max_size, buf); | 90 | 5 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 362 | void write(BufferWritable& buf) const { | 85 | 362 | buf.write_var_uint(data_set.size()); | 86 | 376 | for (const auto& value : data_set) { | 87 | 376 | buf.write_binary(value); | 88 | 376 | } | 89 | 362 | write_var_int(max_size, buf); | 90 | 362 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 12 | void write(BufferWritable& buf) const { | 85 | 12 | buf.write_var_uint(data_set.size()); | 86 | 35 | for (const auto& value : data_set) { | 87 | 35 | buf.write_binary(value); | 88 | 35 | } | 89 | 12 | write_var_int(max_size, buf); | 90 | 12 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 6 | void write(BufferWritable& buf) const { | 85 | 6 | buf.write_var_uint(data_set.size()); | 86 | 50 | for (const auto& value : data_set) { | 87 | 50 | buf.write_binary(value); | 88 | 50 | } | 89 | 6 | write_var_int(max_size, buf); | 90 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 20 | for (const auto& value : data_set) { | 87 | 20 | buf.write_binary(value); | 88 | 20 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 20 | for (const auto& value : data_set) { | 87 | 20 | buf.write_binary(value); | 88 | 20 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 20 | for (const auto& value : data_set) { | 87 | 20 | buf.write_binary(value); | 88 | 20 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 2 | void write(BufferWritable& buf) const { | 85 | 2 | buf.write_var_uint(data_set.size()); | 86 | 11 | for (const auto& value : data_set) { | 87 | 11 | buf.write_binary(value); | 88 | 11 | } | 89 | 2 | write_var_int(max_size, buf); | 90 | 2 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 9 | void write(BufferWritable& buf) const { | 85 | 9 | buf.write_var_uint(data_set.size()); | 86 | 32 | for (const auto& value : data_set) { | 87 | 32 | buf.write_binary(value); | 88 | 32 | } | 89 | 9 | write_var_int(max_size, buf); | 90 | 9 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 9 | void write(BufferWritable& buf) const { | 85 | 9 | buf.write_var_uint(data_set.size()); | 86 | 38 | for (const auto& value : data_set) { | 87 | 38 | buf.write_binary(value); | 88 | 38 | } | 89 | 9 | write_var_int(max_size, buf); | 90 | 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 | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 4 | for (const auto& value : data_set) { | 87 | 4 | buf.write_binary(value); | 88 | 4 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 4 | for (const auto& value : data_set) { | 87 | 4 | buf.write_binary(value); | 88 | 4 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 4 | for (const auto& value : data_set) { | 87 | 4 | buf.write_binary(value); | 88 | 4 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 43 | void write(BufferWritable& buf) const { | 85 | 43 | buf.write_var_uint(data_set.size()); | 86 | 47 | for (const auto& value : data_set) { | 87 | 47 | buf.write_binary(value); | 88 | 47 | } | 89 | 43 | write_var_int(max_size, buf); | 90 | 43 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 13 | void write(BufferWritable& buf) const { | 85 | 13 | buf.write_var_uint(data_set.size()); | 86 | 21 | for (const auto& value : data_set) { | 87 | 21 | buf.write_binary(value); | 88 | 21 | } | 89 | 13 | write_var_int(max_size, buf); | 90 | 13 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 12 | for (const auto& value : data_set) { | 87 | 12 | buf.write_binary(value); | 88 | 12 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 4 | for (const auto& value : data_set) { | 87 | 4 | buf.write_binary(value); | 88 | 4 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 8 | for (const auto& value : data_set) { | 87 | 8 | buf.write_binary(value); | 88 | 8 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 4 | void write(BufferWritable& buf) const { | 85 | 4 | buf.write_var_uint(data_set.size()); | 86 | 4 | for (const auto& value : data_set) { | 87 | 4 | buf.write_binary(value); | 88 | 4 | } | 89 | 4 | write_var_int(max_size, buf); | 90 | 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 | 84 | 13 | void write(BufferWritable& buf) const { | 85 | 13 | buf.write_var_uint(data_set.size()); | 86 | 25 | for (const auto& value : data_set) { | 87 | 25 | buf.write_binary(value); | 88 | 25 | } | 89 | 13 | write_var_int(max_size, buf); | 90 | 13 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 84 | 13 | void write(BufferWritable& buf) const { | 85 | 13 | buf.write_var_uint(data_set.size()); | 86 | 19 | for (const auto& value : data_set) { | 87 | 19 | buf.write_binary(value); | 88 | 19 | } | 89 | 13 | write_var_int(max_size, buf); | 90 | 13 | } |
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 |
91 | | |
92 | 493 | void read(BufferReadable& buf) { |
93 | 493 | uint64_t new_size = 0; |
94 | 493 | buf.read_var_uint(new_size); |
95 | 493 | ElementType x; |
96 | 1.24k | for (size_t i = 0; i < new_size; ++i) { |
97 | 749 | buf.read_binary(x); |
98 | 749 | data_set.insert(x); |
99 | 749 | } |
100 | 493 | read_var_int(max_size, buf); |
101 | 493 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 12 | for (size_t i = 0; i < new_size; ++i) { | 97 | 8 | buf.read_binary(x); | 98 | 8 | data_set.insert(x); | 99 | 8 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 6 | void read(BufferReadable& buf) { | 93 | 6 | uint64_t new_size = 0; | 94 | 6 | buf.read_var_uint(new_size); | 95 | 6 | ElementType x; | 96 | 23 | for (size_t i = 0; i < new_size; ++i) { | 97 | 17 | buf.read_binary(x); | 98 | 17 | data_set.insert(x); | 99 | 17 | } | 100 | 6 | read_var_int(max_size, buf); | 101 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 5 | void read(BufferReadable& buf) { | 93 | 5 | uint64_t new_size = 0; | 94 | 5 | buf.read_var_uint(new_size); | 95 | 5 | ElementType x; | 96 | 25 | for (size_t i = 0; i < new_size; ++i) { | 97 | 20 | buf.read_binary(x); | 98 | 20 | data_set.insert(x); | 99 | 20 | } | 100 | 5 | read_var_int(max_size, buf); | 101 | 5 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 323 | void read(BufferReadable& buf) { | 93 | 323 | uint64_t new_size = 0; | 94 | 323 | buf.read_var_uint(new_size); | 95 | 323 | ElementType x; | 96 | 660 | for (size_t i = 0; i < new_size; ++i) { | 97 | 337 | buf.read_binary(x); | 98 | 337 | data_set.insert(x); | 99 | 337 | } | 100 | 323 | read_var_int(max_size, buf); | 101 | 323 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 11 | void read(BufferReadable& buf) { | 93 | 11 | uint64_t new_size = 0; | 94 | 11 | buf.read_var_uint(new_size); | 95 | 11 | ElementType x; | 96 | 43 | for (size_t i = 0; i < new_size; ++i) { | 97 | 32 | buf.read_binary(x); | 98 | 32 | data_set.insert(x); | 99 | 32 | } | 100 | 11 | read_var_int(max_size, buf); | 101 | 11 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 6 | void read(BufferReadable& buf) { | 93 | 6 | uint64_t new_size = 0; | 94 | 6 | buf.read_var_uint(new_size); | 95 | 6 | ElementType x; | 96 | 56 | for (size_t i = 0; i < new_size; ++i) { | 97 | 50 | buf.read_binary(x); | 98 | 50 | data_set.insert(x); | 99 | 50 | } | 100 | 6 | read_var_int(max_size, buf); | 101 | 6 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 24 | for (size_t i = 0; i < new_size; ++i) { | 97 | 20 | buf.read_binary(x); | 98 | 20 | data_set.insert(x); | 99 | 20 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 24 | for (size_t i = 0; i < new_size; ++i) { | 97 | 20 | buf.read_binary(x); | 98 | 20 | data_set.insert(x); | 99 | 20 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 24 | for (size_t i = 0; i < new_size; ++i) { | 97 | 20 | buf.read_binary(x); | 98 | 20 | data_set.insert(x); | 99 | 20 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 2 | void read(BufferReadable& buf) { | 93 | 2 | uint64_t new_size = 0; | 94 | 2 | buf.read_var_uint(new_size); | 95 | 2 | ElementType x; | 96 | 13 | for (size_t i = 0; i < new_size; ++i) { | 97 | 11 | buf.read_binary(x); | 98 | 11 | data_set.insert(x); | 99 | 11 | } | 100 | 2 | read_var_int(max_size, buf); | 101 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 9 | void read(BufferReadable& buf) { | 93 | 9 | uint64_t new_size = 0; | 94 | 9 | buf.read_var_uint(new_size); | 95 | 9 | ElementType x; | 96 | 41 | for (size_t i = 0; i < new_size; ++i) { | 97 | 32 | buf.read_binary(x); | 98 | 32 | data_set.insert(x); | 99 | 32 | } | 100 | 9 | read_var_int(max_size, buf); | 101 | 9 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 9 | void read(BufferReadable& buf) { | 93 | 9 | uint64_t new_size = 0; | 94 | 9 | buf.read_var_uint(new_size); | 95 | 9 | ElementType x; | 96 | 47 | for (size_t i = 0; i < new_size; ++i) { | 97 | 38 | buf.read_binary(x); | 98 | 38 | data_set.insert(x); | 99 | 38 | } | 100 | 9 | read_var_int(max_size, buf); | 101 | 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 | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 8 | for (size_t i = 0; i < new_size; ++i) { | 97 | 4 | buf.read_binary(x); | 98 | 4 | data_set.insert(x); | 99 | 4 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 8 | for (size_t i = 0; i < new_size; ++i) { | 97 | 4 | buf.read_binary(x); | 98 | 4 | data_set.insert(x); | 99 | 4 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 8 | for (size_t i = 0; i < new_size; ++i) { | 97 | 4 | buf.read_binary(x); | 98 | 4 | data_set.insert(x); | 99 | 4 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 40 | void read(BufferReadable& buf) { | 93 | 40 | uint64_t new_size = 0; | 94 | 40 | buf.read_var_uint(new_size); | 95 | 40 | ElementType x; | 96 | 82 | for (size_t i = 0; i < new_size; ++i) { | 97 | 42 | buf.read_binary(x); | 98 | 42 | data_set.insert(x); | 99 | 42 | } | 100 | 40 | read_var_int(max_size, buf); | 101 | 40 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 12 | void read(BufferReadable& buf) { | 93 | 12 | uint64_t new_size = 0; | 94 | 12 | buf.read_var_uint(new_size); | 95 | 12 | ElementType x; | 96 | 30 | for (size_t i = 0; i < new_size; ++i) { | 97 | 18 | buf.read_binary(x); | 98 | 18 | data_set.insert(x); | 99 | 18 | } | 100 | 12 | read_var_int(max_size, buf); | 101 | 12 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 16 | for (size_t i = 0; i < new_size; ++i) { | 97 | 12 | buf.read_binary(x); | 98 | 12 | data_set.insert(x); | 99 | 12 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 8 | for (size_t i = 0; i < new_size; ++i) { | 97 | 4 | buf.read_binary(x); | 98 | 4 | data_set.insert(x); | 99 | 4 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 12 | for (size_t i = 0; i < new_size; ++i) { | 97 | 8 | buf.read_binary(x); | 98 | 8 | data_set.insert(x); | 99 | 8 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 4 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 4 | void read(BufferReadable& buf) { | 93 | 4 | uint64_t new_size = 0; | 94 | 4 | buf.read_var_uint(new_size); | 95 | 4 | ElementType x; | 96 | 8 | for (size_t i = 0; i < new_size; ++i) { | 97 | 4 | buf.read_binary(x); | 98 | 4 | data_set.insert(x); | 99 | 4 | } | 100 | 4 | read_var_int(max_size, buf); | 101 | 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 | 92 | 13 | void read(BufferReadable& buf) { | 93 | 13 | uint64_t new_size = 0; | 94 | 13 | buf.read_var_uint(new_size); | 95 | 13 | ElementType x; | 96 | 38 | for (size_t i = 0; i < new_size; ++i) { | 97 | 25 | buf.read_binary(x); | 98 | 25 | data_set.insert(x); | 99 | 25 | } | 100 | 13 | read_var_int(max_size, buf); | 101 | 13 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 92 | 13 | void read(BufferReadable& buf) { | 93 | 13 | uint64_t new_size = 0; | 94 | 13 | buf.read_var_uint(new_size); | 95 | 13 | ElementType x; | 96 | 32 | for (size_t i = 0; i < new_size; ++i) { | 97 | 19 | buf.read_binary(x); | 98 | 19 | data_set.insert(x); | 99 | 19 | } | 100 | 13 | read_var_int(max_size, buf); | 101 | 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 |
102 | | |
103 | 363 | void insert_result_into(IColumn& to) const { |
104 | 363 | auto& vec = assert_cast<ColVecType&>(to).get_data(); |
105 | 363 | vec.reserve(size()); |
106 | 680 | for (const auto& item : data_set) { |
107 | 680 | vec.push_back(item); |
108 | 680 | } |
109 | 363 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 8 | for (const auto& item : data_set) { | 107 | 8 | vec.push_back(item); | 108 | 8 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 7 | void insert_result_into(IColumn& to) const { | 104 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 7 | vec.reserve(size()); | 106 | 17 | for (const auto& item : data_set) { | 107 | 17 | vec.push_back(item); | 108 | 17 | } | 109 | 7 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 6 | void insert_result_into(IColumn& to) const { | 104 | 6 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 6 | vec.reserve(size()); | 106 | 20 | for (const auto& item : data_set) { | 107 | 20 | vec.push_back(item); | 108 | 20 | } | 109 | 6 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 220 | void insert_result_into(IColumn& to) const { | 104 | 220 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 220 | vec.reserve(size()); | 106 | 249 | for (const auto& item : data_set) { | 107 | 249 | vec.push_back(item); | 108 | 249 | } | 109 | 220 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 12 | void insert_result_into(IColumn& to) const { | 104 | 12 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 12 | vec.reserve(size()); | 106 | 38 | for (const auto& item : data_set) { | 107 | 38 | vec.push_back(item); | 108 | 38 | } | 109 | 12 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 8 | void insert_result_into(IColumn& to) const { | 104 | 8 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 8 | vec.reserve(size()); | 106 | 80 | for (const auto& item : data_set) { | 107 | 80 | vec.push_back(item); | 108 | 80 | } | 109 | 8 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 20 | for (const auto& item : data_set) { | 107 | 20 | vec.push_back(item); | 108 | 20 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 20 | for (const auto& item : data_set) { | 107 | 20 | vec.push_back(item); | 108 | 20 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 20 | for (const auto& item : data_set) { | 107 | 20 | vec.push_back(item); | 108 | 20 | } | 109 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 22 | for (const auto& item : data_set) { | 107 | 22 | vec.push_back(item); | 108 | 22 | } | 109 | 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 | 103 | 14 | void insert_result_into(IColumn& to) const { | 104 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 14 | vec.reserve(size()); | 106 | 38 | for (const auto& item : data_set) { | 107 | 38 | vec.push_back(item); | 108 | 38 | } | 109 | 14 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 10 | void insert_result_into(IColumn& to) const { | 104 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 10 | vec.reserve(size()); | 106 | 44 | for (const auto& item : data_set) { | 107 | 44 | vec.push_back(item); | 108 | 44 | } | 109 | 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 | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 4 | for (const auto& item : data_set) { | 107 | 4 | vec.push_back(item); | 108 | 4 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 4 | for (const auto& item : data_set) { | 107 | 4 | vec.push_back(item); | 108 | 4 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 4 | for (const auto& item : data_set) { | 107 | 4 | vec.push_back(item); | 108 | 4 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 10 | void insert_result_into(IColumn& to) const { | 104 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 10 | vec.reserve(size()); | 106 | 12 | for (const auto& item : data_set) { | 107 | 12 | vec.push_back(item); | 108 | 12 | } | 109 | 10 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 10 | void insert_result_into(IColumn& to) const { | 104 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 10 | vec.reserve(size()); | 106 | 22 | for (const auto& item : data_set) { | 107 | 22 | vec.push_back(item); | 108 | 22 | } | 109 | 10 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 12 | for (const auto& item : data_set) { | 107 | 12 | vec.push_back(item); | 108 | 12 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 4 | for (const auto& item : data_set) { | 107 | 4 | vec.push_back(item); | 108 | 4 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 8 | for (const auto& item : data_set) { | 107 | 8 | vec.push_back(item); | 108 | 8 | } | 109 | 4 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 4 | void insert_result_into(IColumn& to) const { | 104 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 4 | vec.reserve(size()); | 106 | 4 | for (const auto& item : data_set) { | 107 | 4 | vec.push_back(item); | 108 | 4 | } | 109 | 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 | 103 | 9 | void insert_result_into(IColumn& to) const { | 104 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 9 | vec.reserve(size()); | 106 | 17 | for (const auto& item : data_set) { | 107 | 17 | vec.push_back(item); | 108 | 17 | } | 109 | 9 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 103 | 9 | void insert_result_into(IColumn& to) const { | 104 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 105 | 9 | vec.reserve(size()); | 106 | 13 | for (const auto& item : data_set) { | 107 | 13 | vec.push_back(item); | 108 | 13 | } | 109 | 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 |
110 | | |
111 | | void reset() { data_set.clear(); } |
112 | | }; |
113 | | |
114 | | template <PrimitiveType T, bool HasLimit> |
115 | | requires(is_string_type(T)) |
116 | | struct AggregateFunctionCollectSetData<T, HasLimit> { |
117 | | static constexpr PrimitiveType PType = T; |
118 | | using ElementType = StringRef; |
119 | | using ColVecType = ColumnString; |
120 | | using SelfType = AggregateFunctionCollectSetData<T, HasLimit>; |
121 | | using Set = phmap::flat_hash_set<ElementType>; |
122 | | Set data_set; |
123 | | Int64 max_size = -1; |
124 | | |
125 | 888 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 125 | 758 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 125 | 130 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
|
126 | | |
127 | 634 | size_t size() const { return data_set.size(); }_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 127 | 456 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 127 | 178 | size_t size() const { return data_set.size(); } |
|
128 | | |
129 | 366 | void add(const IColumn& column, size_t row_num, Arena& arena) { |
130 | 366 | auto key = column.get_data_at(row_num); |
131 | 366 | key.data = arena.insert(key.data, key.size); |
132 | 366 | data_set.insert(key); |
133 | 366 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 129 | 346 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 130 | 346 | auto key = column.get_data_at(row_num); | 131 | 346 | key.data = arena.insert(key.data, key.size); | 132 | 346 | data_set.insert(key); | 133 | 346 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 129 | 20 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 130 | 20 | auto key = column.get_data_at(row_num); | 131 | 20 | key.data = arena.insert(key.data, key.size); | 132 | 20 | data_set.insert(key); | 133 | 20 | } |
|
134 | | |
135 | 242 | void merge(const SelfType& rhs, Arena& arena) { |
136 | 242 | if (max_size == -1) { |
137 | 242 | max_size = rhs.max_size; |
138 | 242 | } |
139 | 242 | max_size = rhs.max_size; |
140 | | |
141 | 281 | for (const auto& rhs_elem : rhs.data_set) { |
142 | 281 | if constexpr (HasLimit) { |
143 | 16 | if (size() >= max_size) { |
144 | 0 | return; |
145 | 0 | } |
146 | 16 | } |
147 | 16 | StringRef key = rhs_elem; |
148 | 281 | key.data = arena.insert(key.data, key.size); |
149 | 281 | data_set.insert(key); |
150 | 281 | } |
151 | 242 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 135 | 226 | void merge(const SelfType& rhs, Arena& arena) { | 136 | 226 | if (max_size == -1) { | 137 | 226 | max_size = rhs.max_size; | 138 | 226 | } | 139 | 226 | max_size = rhs.max_size; | 140 | | | 141 | 265 | for (const auto& rhs_elem : rhs.data_set) { | 142 | | if constexpr (HasLimit) { | 143 | | if (size() >= max_size) { | 144 | | return; | 145 | | } | 146 | | } | 147 | 265 | StringRef key = rhs_elem; | 148 | 265 | key.data = arena.insert(key.data, key.size); | 149 | 265 | data_set.insert(key); | 150 | 265 | } | 151 | 226 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 135 | 16 | void merge(const SelfType& rhs, Arena& arena) { | 136 | 16 | if (max_size == -1) { | 137 | 16 | max_size = rhs.max_size; | 138 | 16 | } | 139 | 16 | max_size = rhs.max_size; | 140 | | | 141 | 16 | for (const auto& rhs_elem : rhs.data_set) { | 142 | 16 | if constexpr (HasLimit) { | 143 | 16 | if (size() >= max_size) { | 144 | 0 | return; | 145 | 0 | } | 146 | 16 | } | 147 | 16 | StringRef key = rhs_elem; | 148 | 16 | key.data = arena.insert(key.data, key.size); | 149 | 16 | data_set.insert(key); | 150 | 16 | } | 151 | 16 | } |
|
152 | | |
153 | 236 | void write(BufferWritable& buf) const { |
154 | 236 | buf.write_var_uint(size()); |
155 | 275 | for (const auto& elem : data_set) { |
156 | 275 | buf.write_binary(elem); |
157 | 275 | } |
158 | 236 | write_var_int(max_size, buf); |
159 | 236 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 153 | 220 | void write(BufferWritable& buf) const { | 154 | 220 | buf.write_var_uint(size()); | 155 | 259 | for (const auto& elem : data_set) { | 156 | 259 | buf.write_binary(elem); | 157 | 259 | } | 158 | 220 | write_var_int(max_size, buf); | 159 | 220 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 153 | 16 | void write(BufferWritable& buf) const { | 154 | 16 | buf.write_var_uint(size()); | 155 | 16 | for (const auto& elem : data_set) { | 156 | 16 | buf.write_binary(elem); | 157 | 16 | } | 158 | 16 | write_var_int(max_size, buf); | 159 | 16 | } |
|
160 | | |
161 | 242 | void read(BufferReadable& buf) { |
162 | 242 | UInt64 size; |
163 | 242 | buf.read_var_uint(size); |
164 | 242 | StringRef ref; |
165 | 523 | for (size_t i = 0; i < size; ++i) { |
166 | 281 | buf.read_binary(ref); |
167 | 281 | data_set.insert(ref); |
168 | 281 | } |
169 | 242 | read_var_int(max_size, buf); |
170 | 242 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 161 | 226 | void read(BufferReadable& buf) { | 162 | 226 | UInt64 size; | 163 | 226 | buf.read_var_uint(size); | 164 | 226 | StringRef ref; | 165 | 491 | for (size_t i = 0; i < size; ++i) { | 166 | 265 | buf.read_binary(ref); | 167 | 265 | data_set.insert(ref); | 168 | 265 | } | 169 | 226 | read_var_int(max_size, buf); | 170 | 226 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 161 | 16 | void read(BufferReadable& buf) { | 162 | 16 | UInt64 size; | 163 | 16 | buf.read_var_uint(size); | 164 | 16 | StringRef ref; | 165 | 32 | for (size_t i = 0; i < size; ++i) { | 166 | 16 | buf.read_binary(ref); | 167 | 16 | data_set.insert(ref); | 168 | 16 | } | 169 | 16 | read_var_int(max_size, buf); | 170 | 16 | } |
|
171 | | |
172 | 256 | void insert_result_into(IColumn& to) const { |
173 | 256 | auto& vec = assert_cast<ColVecType&>(to); |
174 | 256 | vec.reserve(size()); |
175 | 328 | for (const auto& item : data_set) { |
176 | 328 | vec.insert_data(item.data, item.size); |
177 | 328 | } |
178 | 256 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 172 | 236 | void insert_result_into(IColumn& to) const { | 173 | 236 | auto& vec = assert_cast<ColVecType&>(to); | 174 | 236 | vec.reserve(size()); | 175 | 308 | for (const auto& item : data_set) { | 176 | 308 | vec.insert_data(item.data, item.size); | 177 | 308 | } | 178 | 236 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 172 | 20 | void insert_result_into(IColumn& to) const { | 173 | 20 | auto& vec = assert_cast<ColVecType&>(to); | 174 | 20 | vec.reserve(size()); | 175 | 20 | for (const auto& item : data_set) { | 176 | 20 | vec.insert_data(item.data, item.size); | 177 | 20 | } | 178 | 20 | } |
|
179 | | |
180 | | void reset() { data_set.clear(); } |
181 | | }; |
182 | | |
183 | | template <PrimitiveType T, bool HasLimit> |
184 | | struct AggregateFunctionCollectListData { |
185 | | static constexpr PrimitiveType PType = T; |
186 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
187 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
188 | | using SelfType = AggregateFunctionCollectListData<T, HasLimit>; |
189 | | PaddedPODArray<ElementType> data; |
190 | | Int64 max_size = -1; |
191 | | |
192 | 1.68k | AggregateFunctionCollectListData(const DataTypes& argument_types) {}_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 40 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 101 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 42 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 481 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 80 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 42 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 40 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 40 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 45 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 14 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 4 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 16 | 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 | 192 | 80 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 80 | 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 | 192 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 129 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 53 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 32 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 31 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 32 | 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 | 192 | 86 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 192 | 86 | 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 |
193 | | |
194 | 1.96k | size_t size() const { return data.size(); }_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv Line | Count | Source | 194 | 28 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 194 | 152 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 194 | 34 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 194 | 512 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 194 | 86 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 194 | 36 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Line | Count | Source | 194 | 28 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Line | Count | Source | 194 | 28 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Line | Count | Source | 194 | 32 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv Line | Count | Source | 194 | 16 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 194 | 12 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4sizeEv Line | Count | Source | 194 | 20 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4sizeEv Line | Count | Source | 194 | 58 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 194 | 58 | 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 | 194 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Line | Count | Source | 194 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv Line | Count | Source | 194 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 194 | 184 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 194 | 113 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Line | Count | Source | 194 | 52 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Line | Count | Source | 194 | 44 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Line | Count | Source | 194 | 48 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Line | Count | Source | 194 | 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 | 194 | 127 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Line | Count | Source | 194 | 123 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4sizeEv |
195 | | |
196 | 1.06k | void add(const IColumn& column, size_t row_num) { |
197 | 1.06k | const auto& vec = |
198 | 1.06k | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); |
199 | 1.06k | data.push_back(vec[row_num]); |
200 | 1.06k | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 38 | void add(const IColumn& column, size_t row_num) { | 197 | 38 | const auto& vec = | 198 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 38 | data.push_back(vec[row_num]); | 200 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 62 | void add(const IColumn& column, size_t row_num) { | 197 | 62 | const auto& vec = | 198 | 62 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 62 | data.push_back(vec[row_num]); | 200 | 62 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 38 | void add(const IColumn& column, size_t row_num) { | 197 | 38 | const auto& vec = | 198 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 38 | data.push_back(vec[row_num]); | 200 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 223 | void add(const IColumn& column, size_t row_num) { | 197 | 223 | const auto& vec = | 198 | 223 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 223 | data.push_back(vec[row_num]); | 200 | 223 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 80 | void add(const IColumn& column, size_t row_num) { | 197 | 80 | const auto& vec = | 198 | 80 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 80 | data.push_back(vec[row_num]); | 200 | 80 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 116 | void add(const IColumn& column, size_t row_num) { | 197 | 116 | const auto& vec = | 198 | 116 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 116 | data.push_back(vec[row_num]); | 200 | 116 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 38 | void add(const IColumn& column, size_t row_num) { | 197 | 38 | const auto& vec = | 198 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 38 | data.push_back(vec[row_num]); | 200 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 38 | void add(const IColumn& column, size_t row_num) { | 197 | 38 | const auto& vec = | 198 | 38 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 38 | data.push_back(vec[row_num]); | 200 | 38 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 48 | void add(const IColumn& column, size_t row_num) { | 197 | 48 | const auto& vec = | 198 | 48 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 48 | data.push_back(vec[row_num]); | 200 | 48 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 24 | void add(const IColumn& column, size_t row_num) { | 197 | 24 | const auto& vec = | 198 | 24 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 24 | data.push_back(vec[row_num]); | 200 | 24 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 40 | void add(const IColumn& column, size_t row_num) { | 197 | 40 | const auto& vec = | 198 | 40 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 40 | data.push_back(vec[row_num]); | 200 | 40 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 26 | void add(const IColumn& column, size_t row_num) { | 197 | 26 | const auto& vec = | 198 | 26 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 26 | data.push_back(vec[row_num]); | 200 | 26 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 74 | void add(const IColumn& column, size_t row_num) { | 197 | 74 | const auto& vec = | 198 | 74 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 74 | data.push_back(vec[row_num]); | 200 | 74 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 94 | void add(const IColumn& column, size_t row_num) { | 197 | 94 | const auto& vec = | 198 | 94 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 94 | data.push_back(vec[row_num]); | 200 | 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 | 196 | 4 | void add(const IColumn& column, size_t row_num) { | 197 | 4 | const auto& vec = | 198 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 4 | data.push_back(vec[row_num]); | 200 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 4 | void add(const IColumn& column, size_t row_num) { | 197 | 4 | const auto& vec = | 198 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 4 | data.push_back(vec[row_num]); | 200 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 4 | void add(const IColumn& column, size_t row_num) { | 197 | 4 | const auto& vec = | 198 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 4 | data.push_back(vec[row_num]); | 200 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 18 | void add(const IColumn& column, size_t row_num) { | 197 | 18 | const auto& vec = | 198 | 18 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 18 | data.push_back(vec[row_num]); | 200 | 18 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 26 | void add(const IColumn& column, size_t row_num) { | 197 | 26 | const auto& vec = | 198 | 26 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 26 | data.push_back(vec[row_num]); | 200 | 26 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 12 | void add(const IColumn& column, size_t row_num) { | 197 | 12 | const auto& vec = | 198 | 12 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 12 | data.push_back(vec[row_num]); | 200 | 12 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 4 | void add(const IColumn& column, size_t row_num) { | 197 | 4 | const auto& vec = | 198 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 4 | data.push_back(vec[row_num]); | 200 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 8 | void add(const IColumn& column, size_t row_num) { | 197 | 8 | const auto& vec = | 198 | 8 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 8 | data.push_back(vec[row_num]); | 200 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 4 | void add(const IColumn& column, size_t row_num) { | 197 | 4 | const auto& vec = | 198 | 4 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 4 | data.push_back(vec[row_num]); | 200 | 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 | 196 | 25 | void add(const IColumn& column, size_t row_num) { | 197 | 25 | const auto& vec = | 198 | 25 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 25 | data.push_back(vec[row_num]); | 200 | 25 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 196 | 21 | void add(const IColumn& column, size_t row_num) { | 197 | 21 | const auto& vec = | 198 | 21 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 199 | 21 | data.push_back(vec[row_num]); | 200 | 21 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE3addERKNS_7IColumnEm |
201 | | |
202 | 390 | void merge(const SelfType& rhs) { |
203 | 390 | if constexpr (HasLimit) { |
204 | 105 | if (max_size == -1) { |
205 | 89 | max_size = rhs.max_size; |
206 | 89 | } |
207 | 105 | max_size = rhs.max_size; |
208 | 135 | for (auto& rhs_elem : rhs.data) { |
209 | 135 | if (size() >= max_size) { |
210 | 7 | return; |
211 | 7 | } |
212 | 128 | data.push_back(rhs_elem); |
213 | 128 | } |
214 | 285 | } else { |
215 | 285 | data.insert(rhs.data.begin(), rhs.data.end()); |
216 | 285 | } |
217 | 390 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 7 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 7 | } else { | 215 | 7 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 7 | } | 217 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 8 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 8 | } else { | 215 | 8 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 8 | } | 217 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 8 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 8 | } else { | 215 | 8 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 8 | } | 217 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 165 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 165 | } else { | 215 | 165 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 165 | } | 217 | 165 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 20 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 20 | } else { | 215 | 20 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 20 | } | 217 | 20 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 9 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 9 | } else { | 215 | 9 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 9 | } | 217 | 9 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 7 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 7 | } else { | 215 | 7 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 7 | } | 217 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 7 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 7 | } else { | 215 | 7 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 7 | } | 217 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 10 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 10 | } else { | 215 | 10 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 10 | } | 217 | 10 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 6 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 6 | } else { | 215 | 6 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 6 | } | 217 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 2 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 2 | } else { | 215 | 2 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 2 | } | 217 | 2 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 6 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 6 | } else { | 215 | 6 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 6 | } | 217 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 15 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 15 | } else { | 215 | 15 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 15 | } | 217 | 15 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 202 | 15 | void merge(const SelfType& rhs) { | 203 | | if constexpr (HasLimit) { | 204 | | if (max_size == -1) { | 205 | | max_size = rhs.max_size; | 206 | | } | 207 | | max_size = rhs.max_size; | 208 | | for (auto& rhs_elem : rhs.data) { | 209 | | if (size() >= max_size) { | 210 | | return; | 211 | | } | 212 | | data.push_back(rhs_elem); | 213 | | } | 214 | 15 | } else { | 215 | 15 | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | 15 | } | 217 | 15 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 4 | for (auto& rhs_elem : rhs.data) { | 209 | 4 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 4 | data.push_back(rhs_elem); | 213 | 4 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 4 | for (auto& rhs_elem : rhs.data) { | 209 | 4 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 4 | data.push_back(rhs_elem); | 213 | 4 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 4 | for (auto& rhs_elem : rhs.data) { | 209 | 4 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 4 | data.push_back(rhs_elem); | 213 | 4 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 40 | void merge(const SelfType& rhs) { | 203 | 40 | if constexpr (HasLimit) { | 204 | 40 | if (max_size == -1) { | 205 | 34 | max_size = rhs.max_size; | 206 | 34 | } | 207 | 40 | max_size = rhs.max_size; | 208 | 42 | for (auto& rhs_elem : rhs.data) { | 209 | 42 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 42 | data.push_back(rhs_elem); | 213 | 42 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 40 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 11 | void merge(const SelfType& rhs) { | 203 | 11 | if constexpr (HasLimit) { | 204 | 11 | if (max_size == -1) { | 205 | 8 | max_size = rhs.max_size; | 206 | 8 | } | 207 | 11 | max_size = rhs.max_size; | 208 | 17 | for (auto& rhs_elem : rhs.data) { | 209 | 17 | if (size() >= max_size) { | 210 | 1 | return; | 211 | 1 | } | 212 | 16 | data.push_back(rhs_elem); | 213 | 16 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 11 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 12 | for (auto& rhs_elem : rhs.data) { | 209 | 12 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 12 | data.push_back(rhs_elem); | 213 | 12 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 4 | for (auto& rhs_elem : rhs.data) { | 209 | 4 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 4 | data.push_back(rhs_elem); | 213 | 4 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 8 | for (auto& rhs_elem : rhs.data) { | 209 | 8 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 8 | data.push_back(rhs_elem); | 213 | 8 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 4 | void merge(const SelfType& rhs) { | 203 | 4 | if constexpr (HasLimit) { | 204 | 4 | if (max_size == -1) { | 205 | 4 | max_size = rhs.max_size; | 206 | 4 | } | 207 | 4 | max_size = rhs.max_size; | 208 | 4 | for (auto& rhs_elem : rhs.data) { | 209 | 4 | if (size() >= max_size) { | 210 | 0 | return; | 211 | 0 | } | 212 | 4 | data.push_back(rhs_elem); | 213 | 4 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 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 | 202 | 13 | void merge(const SelfType& rhs) { | 203 | 13 | if constexpr (HasLimit) { | 204 | 13 | if (max_size == -1) { | 205 | 10 | max_size = rhs.max_size; | 206 | 10 | } | 207 | 13 | max_size = rhs.max_size; | 208 | 20 | for (auto& rhs_elem : rhs.data) { | 209 | 20 | if (size() >= max_size) { | 210 | 3 | return; | 211 | 3 | } | 212 | 17 | data.push_back(rhs_elem); | 213 | 17 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Line | Count | Source | 202 | 13 | void merge(const SelfType& rhs) { | 203 | 13 | if constexpr (HasLimit) { | 204 | 13 | if (max_size == -1) { | 205 | 9 | max_size = rhs.max_size; | 206 | 9 | } | 207 | 13 | max_size = rhs.max_size; | 208 | 16 | for (auto& rhs_elem : rhs.data) { | 209 | 16 | if (size() >= max_size) { | 210 | 3 | return; | 211 | 3 | } | 212 | 13 | data.push_back(rhs_elem); | 213 | 13 | } | 214 | | } else { | 215 | | data.insert(rhs.data.begin(), rhs.data.end()); | 216 | | } | 217 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ |
218 | | |
219 | 438 | void write(BufferWritable& buf) const { |
220 | 438 | buf.write_var_uint(size()); |
221 | 438 | buf.write(data.raw_data(), size() * sizeof(ElementType)); |
222 | 438 | write_var_int(max_size, buf); |
223 | 438 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 7 | void write(BufferWritable& buf) const { | 220 | 7 | buf.write_var_uint(size()); | 221 | 7 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 7 | write_var_int(max_size, buf); | 223 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 8 | void write(BufferWritable& buf) const { | 220 | 8 | buf.write_var_uint(size()); | 221 | 8 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 8 | write_var_int(max_size, buf); | 223 | 8 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 8 | void write(BufferWritable& buf) const { | 220 | 8 | buf.write_var_uint(size()); | 221 | 8 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 8 | write_var_int(max_size, buf); | 223 | 8 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 207 | void write(BufferWritable& buf) const { | 220 | 207 | buf.write_var_uint(size()); | 221 | 207 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 207 | write_var_int(max_size, buf); | 223 | 207 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 22 | void write(BufferWritable& buf) const { | 220 | 22 | buf.write_var_uint(size()); | 221 | 22 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 22 | write_var_int(max_size, buf); | 223 | 22 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 9 | void write(BufferWritable& buf) const { | 220 | 9 | buf.write_var_uint(size()); | 221 | 9 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 9 | write_var_int(max_size, buf); | 223 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 7 | void write(BufferWritable& buf) const { | 220 | 7 | buf.write_var_uint(size()); | 221 | 7 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 7 | write_var_int(max_size, buf); | 223 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 7 | void write(BufferWritable& buf) const { | 220 | 7 | buf.write_var_uint(size()); | 221 | 7 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 7 | write_var_int(max_size, buf); | 223 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 10 | void write(BufferWritable& buf) const { | 220 | 10 | buf.write_var_uint(size()); | 221 | 10 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 10 | write_var_int(max_size, buf); | 223 | 10 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 6 | void write(BufferWritable& buf) const { | 220 | 6 | buf.write_var_uint(size()); | 221 | 6 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 6 | write_var_int(max_size, buf); | 223 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 2 | void write(BufferWritable& buf) const { | 220 | 2 | buf.write_var_uint(size()); | 221 | 2 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 2 | write_var_int(max_size, buf); | 223 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 6 | void write(BufferWritable& buf) const { | 220 | 6 | buf.write_var_uint(size()); | 221 | 6 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 6 | write_var_int(max_size, buf); | 223 | 6 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 15 | void write(BufferWritable& buf) const { | 220 | 15 | buf.write_var_uint(size()); | 221 | 15 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 15 | write_var_int(max_size, buf); | 223 | 15 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 15 | void write(BufferWritable& buf) const { | 220 | 15 | buf.write_var_uint(size()); | 221 | 15 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 15 | write_var_int(max_size, buf); | 223 | 15 | } |
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 | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 43 | void write(BufferWritable& buf) const { | 220 | 43 | buf.write_var_uint(size()); | 221 | 43 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 43 | write_var_int(max_size, buf); | 223 | 43 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 12 | void write(BufferWritable& buf) const { | 220 | 12 | buf.write_var_uint(size()); | 221 | 12 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 12 | write_var_int(max_size, buf); | 223 | 12 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 4 | void write(BufferWritable& buf) const { | 220 | 4 | buf.write_var_uint(size()); | 221 | 4 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 4 | write_var_int(max_size, buf); | 223 | 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 | 219 | 13 | void write(BufferWritable& buf) const { | 220 | 13 | buf.write_var_uint(size()); | 221 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 13 | write_var_int(max_size, buf); | 223 | 13 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 219 | 13 | void write(BufferWritable& buf) const { | 220 | 13 | buf.write_var_uint(size()); | 221 | 13 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 222 | 13 | write_var_int(max_size, buf); | 223 | 13 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5writeERNS_14BufferWritableE |
224 | | |
225 | 390 | void read(BufferReadable& buf) { |
226 | 390 | UInt64 rows = 0; |
227 | 390 | buf.read_var_uint(rows); |
228 | 390 | data.resize(rows); |
229 | 390 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); |
230 | 390 | read_var_int(max_size, buf); |
231 | 390 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 7 | void read(BufferReadable& buf) { | 226 | 7 | UInt64 rows = 0; | 227 | 7 | buf.read_var_uint(rows); | 228 | 7 | data.resize(rows); | 229 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 7 | read_var_int(max_size, buf); | 231 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 8 | void read(BufferReadable& buf) { | 226 | 8 | UInt64 rows = 0; | 227 | 8 | buf.read_var_uint(rows); | 228 | 8 | data.resize(rows); | 229 | 8 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 8 | read_var_int(max_size, buf); | 231 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 8 | void read(BufferReadable& buf) { | 226 | 8 | UInt64 rows = 0; | 227 | 8 | buf.read_var_uint(rows); | 228 | 8 | data.resize(rows); | 229 | 8 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 8 | read_var_int(max_size, buf); | 231 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 165 | void read(BufferReadable& buf) { | 226 | 165 | UInt64 rows = 0; | 227 | 165 | buf.read_var_uint(rows); | 228 | 165 | data.resize(rows); | 229 | 165 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 165 | read_var_int(max_size, buf); | 231 | 165 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 20 | void read(BufferReadable& buf) { | 226 | 20 | UInt64 rows = 0; | 227 | 20 | buf.read_var_uint(rows); | 228 | 20 | data.resize(rows); | 229 | 20 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 20 | read_var_int(max_size, buf); | 231 | 20 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 9 | void read(BufferReadable& buf) { | 226 | 9 | UInt64 rows = 0; | 227 | 9 | buf.read_var_uint(rows); | 228 | 9 | data.resize(rows); | 229 | 9 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 9 | read_var_int(max_size, buf); | 231 | 9 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 7 | void read(BufferReadable& buf) { | 226 | 7 | UInt64 rows = 0; | 227 | 7 | buf.read_var_uint(rows); | 228 | 7 | data.resize(rows); | 229 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 7 | read_var_int(max_size, buf); | 231 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 7 | void read(BufferReadable& buf) { | 226 | 7 | UInt64 rows = 0; | 227 | 7 | buf.read_var_uint(rows); | 228 | 7 | data.resize(rows); | 229 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 7 | read_var_int(max_size, buf); | 231 | 7 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 10 | void read(BufferReadable& buf) { | 226 | 10 | UInt64 rows = 0; | 227 | 10 | buf.read_var_uint(rows); | 228 | 10 | data.resize(rows); | 229 | 10 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 10 | read_var_int(max_size, buf); | 231 | 10 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 6 | void read(BufferReadable& buf) { | 226 | 6 | UInt64 rows = 0; | 227 | 6 | buf.read_var_uint(rows); | 228 | 6 | data.resize(rows); | 229 | 6 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 6 | read_var_int(max_size, buf); | 231 | 6 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 2 | void read(BufferReadable& buf) { | 226 | 2 | UInt64 rows = 0; | 227 | 2 | buf.read_var_uint(rows); | 228 | 2 | data.resize(rows); | 229 | 2 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 2 | read_var_int(max_size, buf); | 231 | 2 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 6 | void read(BufferReadable& buf) { | 226 | 6 | UInt64 rows = 0; | 227 | 6 | buf.read_var_uint(rows); | 228 | 6 | data.resize(rows); | 229 | 6 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 6 | read_var_int(max_size, buf); | 231 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 15 | void read(BufferReadable& buf) { | 226 | 15 | UInt64 rows = 0; | 227 | 15 | buf.read_var_uint(rows); | 228 | 15 | data.resize(rows); | 229 | 15 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 15 | read_var_int(max_size, buf); | 231 | 15 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 15 | void read(BufferReadable& buf) { | 226 | 15 | UInt64 rows = 0; | 227 | 15 | buf.read_var_uint(rows); | 228 | 15 | data.resize(rows); | 229 | 15 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 15 | read_var_int(max_size, buf); | 231 | 15 | } |
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 | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 40 | void read(BufferReadable& buf) { | 226 | 40 | UInt64 rows = 0; | 227 | 40 | buf.read_var_uint(rows); | 228 | 40 | data.resize(rows); | 229 | 40 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 40 | read_var_int(max_size, buf); | 231 | 40 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 11 | void read(BufferReadable& buf) { | 226 | 11 | UInt64 rows = 0; | 227 | 11 | buf.read_var_uint(rows); | 228 | 11 | data.resize(rows); | 229 | 11 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 11 | read_var_int(max_size, buf); | 231 | 11 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 4 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 4 | void read(BufferReadable& buf) { | 226 | 4 | UInt64 rows = 0; | 227 | 4 | buf.read_var_uint(rows); | 228 | 4 | data.resize(rows); | 229 | 4 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 4 | read_var_int(max_size, buf); | 231 | 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 | 225 | 13 | void read(BufferReadable& buf) { | 226 | 13 | UInt64 rows = 0; | 227 | 13 | buf.read_var_uint(rows); | 228 | 13 | data.resize(rows); | 229 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 13 | read_var_int(max_size, buf); | 231 | 13 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 225 | 13 | void read(BufferReadable& buf) { | 226 | 13 | UInt64 rows = 0; | 227 | 13 | buf.read_var_uint(rows); | 228 | 13 | data.resize(rows); | 229 | 13 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 230 | 13 | read_var_int(max_size, buf); | 231 | 13 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4readERNS_14BufferReadableE |
232 | | |
233 | | void reset() { data.clear(); } |
234 | | |
235 | 286 | void insert_result_into(IColumn& to) const { |
236 | 286 | auto& vec = assert_cast<ColVecType&>(to).get_data(); |
237 | 286 | size_t old_size = vec.size(); |
238 | 286 | vec.resize(old_size + size()); |
239 | 286 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); |
240 | 286 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 7 | void insert_result_into(IColumn& to) const { | 236 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 7 | size_t old_size = vec.size(); | 238 | 7 | vec.resize(old_size + size()); | 239 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 68 | void insert_result_into(IColumn& to) const { | 236 | 68 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 68 | size_t old_size = vec.size(); | 238 | 68 | vec.resize(old_size + size()); | 239 | 68 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 68 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 9 | void insert_result_into(IColumn& to) const { | 236 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 9 | size_t old_size = vec.size(); | 238 | 9 | vec.resize(old_size + size()); | 239 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 49 | void insert_result_into(IColumn& to) const { | 236 | 49 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 49 | size_t old_size = vec.size(); | 238 | 49 | vec.resize(old_size + size()); | 239 | 49 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 49 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 21 | void insert_result_into(IColumn& to) const { | 236 | 21 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 21 | size_t old_size = vec.size(); | 238 | 21 | vec.resize(old_size + size()); | 239 | 21 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 21 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 9 | void insert_result_into(IColumn& to) const { | 236 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 9 | size_t old_size = vec.size(); | 238 | 9 | vec.resize(old_size + size()); | 239 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 7 | void insert_result_into(IColumn& to) const { | 236 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 7 | size_t old_size = vec.size(); | 238 | 7 | vec.resize(old_size + size()); | 239 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 7 | void insert_result_into(IColumn& to) const { | 236 | 7 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 7 | size_t old_size = vec.size(); | 238 | 7 | vec.resize(old_size + size()); | 239 | 7 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 7 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 6 | void insert_result_into(IColumn& to) const { | 236 | 6 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 6 | size_t old_size = vec.size(); | 238 | 6 | vec.resize(old_size + size()); | 239 | 6 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 6 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 2 | void insert_result_into(IColumn& to) const { | 236 | 2 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 2 | size_t old_size = vec.size(); | 238 | 2 | vec.resize(old_size + size()); | 239 | 2 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 14 | void insert_result_into(IColumn& to) const { | 236 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 14 | size_t old_size = vec.size(); | 238 | 14 | vec.resize(old_size + size()); | 239 | 14 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 14 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 14 | void insert_result_into(IColumn& to) const { | 236 | 14 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 14 | size_t old_size = vec.size(); | 238 | 14 | vec.resize(old_size + size()); | 239 | 14 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 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 | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 9 | void insert_result_into(IColumn& to) const { | 236 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 9 | size_t old_size = vec.size(); | 238 | 9 | vec.resize(old_size + size()); | 239 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 10 | void insert_result_into(IColumn& to) const { | 236 | 10 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 10 | size_t old_size = vec.size(); | 238 | 10 | vec.resize(old_size + size()); | 239 | 10 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 10 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 4 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 4 | void insert_result_into(IColumn& to) const { | 236 | 4 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 4 | size_t old_size = vec.size(); | 238 | 4 | vec.resize(old_size + size()); | 239 | 4 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 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 | 235 | 9 | void insert_result_into(IColumn& to) const { | 236 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 9 | size_t old_size = vec.size(); | 238 | 9 | vec.resize(old_size + size()); | 239 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 9 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 235 | 9 | void insert_result_into(IColumn& to) const { | 236 | 9 | auto& vec = assert_cast<ColVecType&>(to).get_data(); | 237 | 9 | size_t old_size = vec.size(); | 238 | 9 | vec.resize(old_size + size()); | 239 | 9 | memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 240 | 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 |
241 | | }; |
242 | | |
243 | | template <PrimitiveType T, bool HasLimit> |
244 | | requires(is_string_type(T)) |
245 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
246 | | static constexpr PrimitiveType PType = T; |
247 | | using ElementType = StringRef; |
248 | | using ColVecType = ColumnString; |
249 | | MutableColumnPtr data; |
250 | | Int64 max_size = -1; |
251 | | |
252 | 319 | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
253 | 319 | data = ColVecType::create(); |
254 | 319 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 252 | 191 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 253 | 191 | data = ColVecType::create(); | 254 | 191 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 252 | 128 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 253 | 128 | data = ColVecType::create(); | 254 | 128 | } |
|
255 | | |
256 | 245 | size_t size() const { return data->size(); }_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 256 | 77 | size_t size() const { return data->size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 256 | 168 | size_t size() const { return data->size(); } |
|
257 | | |
258 | 1.73k | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); }_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 258 | 1.71k | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 258 | 16 | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
|
259 | | |
260 | 46 | void merge(const AggregateFunctionCollectListData& rhs) { |
261 | 46 | if constexpr (HasLimit) { |
262 | 16 | if (max_size == -1) { |
263 | 16 | max_size = rhs.max_size; |
264 | 16 | } |
265 | 16 | max_size = rhs.max_size; |
266 | | |
267 | 16 | data->insert_range_from(*rhs.data, 0, |
268 | 16 | std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>( |
269 | 16 | static_cast<size_t>(max_size - size())), |
270 | 16 | rhs.size())); |
271 | 30 | } else { |
272 | 30 | data->insert_range_from(*rhs.data, 0, rhs.size()); |
273 | 30 | } |
274 | 46 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_ Line | Count | Source | 260 | 30 | void merge(const AggregateFunctionCollectListData& rhs) { | 261 | | if constexpr (HasLimit) { | 262 | | if (max_size == -1) { | 263 | | max_size = rhs.max_size; | 264 | | } | 265 | | max_size = rhs.max_size; | 266 | | | 267 | | data->insert_range_from(*rhs.data, 0, | 268 | | std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>( | 269 | | static_cast<size_t>(max_size - size())), | 270 | | rhs.size())); | 271 | 30 | } else { | 272 | 30 | data->insert_range_from(*rhs.data, 0, rhs.size()); | 273 | 30 | } | 274 | 30 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_ Line | Count | Source | 260 | 16 | void merge(const AggregateFunctionCollectListData& rhs) { | 261 | 16 | if constexpr (HasLimit) { | 262 | 16 | if (max_size == -1) { | 263 | 16 | max_size = rhs.max_size; | 264 | 16 | } | 265 | 16 | max_size = rhs.max_size; | 266 | | | 267 | 16 | data->insert_range_from(*rhs.data, 0, | 268 | 16 | std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>( | 269 | 16 | static_cast<size_t>(max_size - size())), | 270 | 16 | rhs.size())); | 271 | | } else { | 272 | | data->insert_range_from(*rhs.data, 0, rhs.size()); | 273 | | } | 274 | 16 | } |
|
275 | | |
276 | 46 | void write(BufferWritable& buf) const { |
277 | 46 | auto& col = assert_cast<ColVecType&>(*data); |
278 | | |
279 | 46 | buf.write_var_uint(col.size()); |
280 | 46 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); |
281 | | |
282 | 46 | buf.write_var_uint(col.get_chars().size()); |
283 | 46 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); |
284 | 46 | write_var_int(max_size, buf); |
285 | 46 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 276 | 30 | void write(BufferWritable& buf) const { | 277 | 30 | auto& col = assert_cast<ColVecType&>(*data); | 278 | | | 279 | 30 | buf.write_var_uint(col.size()); | 280 | 30 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 281 | | | 282 | 30 | buf.write_var_uint(col.get_chars().size()); | 283 | 30 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 284 | 30 | write_var_int(max_size, buf); | 285 | 30 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 276 | 16 | void write(BufferWritable& buf) const { | 277 | 16 | auto& col = assert_cast<ColVecType&>(*data); | 278 | | | 279 | 16 | buf.write_var_uint(col.size()); | 280 | 16 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 281 | | | 282 | 16 | buf.write_var_uint(col.get_chars().size()); | 283 | 16 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 284 | 16 | write_var_int(max_size, buf); | 285 | 16 | } |
|
286 | | |
287 | 46 | void read(BufferReadable& buf) { |
288 | 46 | auto& col = assert_cast<ColVecType&>(*data); |
289 | 46 | UInt64 offs_size = 0; |
290 | 46 | buf.read_var_uint(offs_size); |
291 | 46 | col.get_offsets().resize(offs_size); |
292 | 46 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), |
293 | 46 | offs_size * sizeof(IColumn::Offset)); |
294 | | |
295 | 46 | UInt64 chars_size = 0; |
296 | 46 | buf.read_var_uint(chars_size); |
297 | 46 | col.get_chars().resize(chars_size); |
298 | 46 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); |
299 | 46 | read_var_int(max_size, buf); |
300 | 46 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 287 | 30 | void read(BufferReadable& buf) { | 288 | 30 | auto& col = assert_cast<ColVecType&>(*data); | 289 | 30 | UInt64 offs_size = 0; | 290 | 30 | buf.read_var_uint(offs_size); | 291 | 30 | col.get_offsets().resize(offs_size); | 292 | 30 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 293 | 30 | offs_size * sizeof(IColumn::Offset)); | 294 | | | 295 | 30 | UInt64 chars_size = 0; | 296 | 30 | buf.read_var_uint(chars_size); | 297 | 30 | col.get_chars().resize(chars_size); | 298 | 30 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 299 | 30 | read_var_int(max_size, buf); | 300 | 30 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 287 | 16 | void read(BufferReadable& buf) { | 288 | 16 | auto& col = assert_cast<ColVecType&>(*data); | 289 | 16 | UInt64 offs_size = 0; | 290 | 16 | buf.read_var_uint(offs_size); | 291 | 16 | col.get_offsets().resize(offs_size); | 292 | 16 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 293 | 16 | offs_size * sizeof(IColumn::Offset)); | 294 | | | 295 | 16 | UInt64 chars_size = 0; | 296 | 16 | buf.read_var_uint(chars_size); | 297 | 16 | col.get_chars().resize(chars_size); | 298 | 16 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 299 | 16 | read_var_int(max_size, buf); | 300 | 16 | } |
|
301 | | |
302 | | void reset() { data->clear(); } |
303 | | |
304 | 63 | void insert_result_into(IColumn& to) const { |
305 | 63 | auto& to_str = assert_cast<ColVecType&>(to); |
306 | 63 | to_str.insert_range_from(*data, 0, size()); |
307 | 63 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 304 | 47 | void insert_result_into(IColumn& to) const { | 305 | 47 | auto& to_str = assert_cast<ColVecType&>(to); | 306 | 47 | to_str.insert_range_from(*data, 0, size()); | 307 | 47 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 304 | 16 | void insert_result_into(IColumn& to) const { | 305 | 16 | auto& to_str = assert_cast<ColVecType&>(to); | 306 | 16 | to_str.insert_range_from(*data, 0, size()); | 307 | 16 | } |
|
308 | | }; |
309 | | |
310 | | template <PrimitiveType T, bool HasLimit> |
311 | | requires(!is_string_type(T) && !is_int_or_bool(T) && !is_float_or_double(T) && !is_decimal(T) && |
312 | | !is_date_type(T) && !is_ip(T) && !is_timestamptz_type(T)) |
313 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
314 | | static constexpr PrimitiveType PType = T; |
315 | | using ElementType = StringRef; |
316 | | using Self = AggregateFunctionCollectListData<T, HasLimit>; |
317 | | DataTypeSerDeSPtr serde; // for complex serialize && deserialize from multi BE |
318 | | MutableColumnPtr column_data; |
319 | | Int64 max_size = -1; |
320 | | |
321 | 1.21k | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
322 | 1.21k | DataTypePtr column_type = argument_types[0]; |
323 | 1.21k | column_data = column_type->create_column(); |
324 | 1.21k | serde = column_type->get_serde(); |
325 | 1.21k | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 321 | 612 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 322 | 612 | DataTypePtr column_type = argument_types[0]; | 323 | 612 | column_data = column_type->create_column(); | 324 | 612 | serde = column_type->get_serde(); | 325 | 612 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 321 | 600 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 322 | 600 | DataTypePtr column_type = argument_types[0]; | 323 | 600 | column_data = column_type->create_column(); | 324 | 600 | serde = column_type->get_serde(); | 325 | 600 | } |
|
326 | | |
327 | 2.41k | size_t size() const { return column_data->size(); }Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4sizeEv Line | Count | Source | 327 | 618 | size_t size() const { return column_data->size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4sizeEv Line | Count | Source | 327 | 1.79k | size_t size() const { return column_data->size(); } |
|
328 | | |
329 | 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 | 329 | 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 | 329 | 1.02k | void add(const IColumn& column, size_t row_num) { column_data->insert_from(column, row_num); } |
|
330 | | |
331 | 6 | void merge(const AggregateFunctionCollectListData& rhs) { |
332 | 6 | if constexpr (HasLimit) { |
333 | 0 | if (max_size == -1) { |
334 | 0 | max_size = rhs.max_size; |
335 | 0 | } |
336 | 0 | max_size = rhs.max_size; |
337 | |
|
338 | 0 | column_data->insert_range_from( |
339 | 0 | *rhs.column_data, 0, |
340 | 0 | std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>( |
341 | 0 | static_cast<size_t>(max_size - size())), |
342 | 0 | rhs.size())); |
343 | 6 | } else { |
344 | 6 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); |
345 | 6 | } |
346 | 6 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5mergeERKS2_ Line | Count | Source | 331 | 6 | void merge(const AggregateFunctionCollectListData& rhs) { | 332 | | if constexpr (HasLimit) { | 333 | | if (max_size == -1) { | 334 | | max_size = rhs.max_size; | 335 | | } | 336 | | max_size = rhs.max_size; | 337 | | | 338 | | column_data->insert_range_from( | 339 | | *rhs.column_data, 0, | 340 | | std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>( | 341 | | static_cast<size_t>(max_size - size())), | 342 | | rhs.size())); | 343 | 6 | } else { | 344 | 6 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); | 345 | 6 | } | 346 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5mergeERKS2_ |
347 | | |
348 | 6 | void write(BufferWritable& buf) const { |
349 | 6 | const size_t size = column_data->size(); |
350 | 6 | buf.write_binary(size); |
351 | | |
352 | 6 | DataTypeSerDe::FormatOptions opt; |
353 | 6 | auto tmp_str = ColumnString::create(); |
354 | 6 | VectorBufferWriter tmp_buf(*tmp_str.get()); |
355 | | |
356 | 90 | for (size_t i = 0; i < size; i++) { |
357 | 84 | tmp_str->clear(); |
358 | 84 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { |
359 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
360 | 0 | "Failed to serialize data for " + column_data->get_name() + |
361 | 0 | " error: " + st.to_string()); |
362 | 0 | } |
363 | 84 | tmp_buf.commit(); |
364 | 84 | buf.write_binary(tmp_str->get_data_at(0)); |
365 | 84 | } |
366 | | |
367 | 6 | write_var_int(max_size, buf); |
368 | 6 | } Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 348 | 6 | void write(BufferWritable& buf) const { | 349 | 6 | const size_t size = column_data->size(); | 350 | 6 | buf.write_binary(size); | 351 | | | 352 | 6 | DataTypeSerDe::FormatOptions opt; | 353 | 6 | auto tmp_str = ColumnString::create(); | 354 | 6 | VectorBufferWriter tmp_buf(*tmp_str.get()); | 355 | | | 356 | 90 | for (size_t i = 0; i < size; i++) { | 357 | 84 | tmp_str->clear(); | 358 | 84 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { | 359 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 360 | 0 | "Failed to serialize data for " + column_data->get_name() + | 361 | 0 | " error: " + st.to_string()); | 362 | 0 | } | 363 | 84 | tmp_buf.commit(); | 364 | 84 | buf.write_binary(tmp_str->get_data_at(0)); | 365 | 84 | } | 366 | | | 367 | 6 | write_var_int(max_size, buf); | 368 | 6 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5writeERNS_14BufferWritableE |
369 | | |
370 | 6 | void read(BufferReadable& buf) { |
371 | 6 | size_t size = 0; |
372 | 6 | buf.read_binary(size); |
373 | 6 | column_data->clear(); |
374 | 6 | column_data->reserve(size); |
375 | | |
376 | 6 | StringRef s; |
377 | 6 | DataTypeSerDe::FormatOptions opt; |
378 | 90 | for (size_t i = 0; i < size; i++) { |
379 | 84 | buf.read_binary(s); |
380 | 84 | Slice slice(s.data, s.size); |
381 | 84 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { |
382 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
383 | 0 | "Failed to deserialize data for " + column_data->get_name() + |
384 | 0 | " error: " + st.to_string()); |
385 | 0 | } |
386 | 84 | } |
387 | 6 | read_var_int(max_size, buf); |
388 | 6 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 370 | 6 | void read(BufferReadable& buf) { | 371 | 6 | size_t size = 0; | 372 | 6 | buf.read_binary(size); | 373 | 6 | column_data->clear(); | 374 | 6 | column_data->reserve(size); | 375 | | | 376 | 6 | StringRef s; | 377 | 6 | DataTypeSerDe::FormatOptions opt; | 378 | 90 | for (size_t i = 0; i < size; i++) { | 379 | 84 | buf.read_binary(s); | 380 | 84 | Slice slice(s.data, s.size); | 381 | 84 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { | 382 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 383 | 0 | "Failed to deserialize data for " + column_data->get_name() + | 384 | 0 | " error: " + st.to_string()); | 385 | 0 | } | 386 | 84 | } | 387 | 6 | read_var_int(max_size, buf); | 388 | 6 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4readERNS_14BufferReadableE |
389 | | |
390 | | void reset() { column_data->clear(); } |
391 | | |
392 | 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 | 392 | 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 | 392 | 600 | void insert_result_into(IColumn& to) const { to.insert_range_from(*column_data, 0, size()); } |
|
393 | | }; |
394 | | |
395 | | template <typename Data, bool HasLimit> |
396 | | class AggregateFunctionCollect |
397 | | : public IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>, |
398 | | VarargsExpression, |
399 | | NotNullableAggregateFunction { |
400 | | static constexpr bool ENABLE_ARENA = |
401 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_STRING, HasLimit>> || |
402 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_CHAR, HasLimit>> || |
403 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_VARCHAR, HasLimit>>; |
404 | | |
405 | | public: |
406 | | AggregateFunctionCollect(const DataTypes& argument_types_) |
407 | 3.16k | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( |
408 | 3.16k | {argument_types_}), |
409 | 3.16k | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {}_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 11 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 11 | {argument_types_}), | 409 | 11 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 14 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 14 | {argument_types_}), | 409 | 14 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 9 | {argument_types_}), | 409 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 13 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 13 | {argument_types_}), | 409 | 13 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 444 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 444 | {argument_types_}), | 409 | 444 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 907 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 907 | {argument_types_}), | 409 | 907 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 10 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 10 | {argument_types_}), | 409 | 10 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 15 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 15 | {argument_types_}), | 409 | 15 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 10 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 10 | {argument_types_}), | 409 | 10 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 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 | 407 | 4 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 4 | {argument_types_}), | 409 | 4 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 2 | {argument_types_}), | 409 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 2 | {argument_types_}), | 409 | 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 | 407 | 6 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 6 | {argument_types_}), | 409 | 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 | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 23 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 23 | {argument_types_}), | 409 | 23 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 17 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 17 | {argument_types_}), | 409 | 17 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 23 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 23 | {argument_types_}), | 409 | 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 | 407 | 193 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 193 | {argument_types_}), | 409 | 193 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 59 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 59 | {argument_types_}), | 409 | 59 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 498 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 498 | {argument_types_}), | 409 | 498 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 502 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 502 | {argument_types_}), | 409 | 502 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 9 | {argument_types_}), | 409 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 9 | {argument_types_}), | 409 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 8 | {argument_types_}), | 409 | 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 | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 18 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 18 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 18 | {argument_types_}), | 409 | 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 | 407 | 33 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 33 | {argument_types_}), | 409 | 33 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 32 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 32 | {argument_types_}), | 409 | 32 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 407 | 12 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 408 | 12 | {argument_types_}), | 409 | 12 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
|
410 | | |
411 | 228 | std::string get_name() const override { |
412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, |
413 | 129 | Data>) { |
414 | 129 | return "collect_list"; |
415 | 129 | } else { |
416 | 99 | return "collect_set"; |
417 | 99 | } |
418 | 228 | } 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 | 411 | 20 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | | Data>) { | 414 | | return "collect_list"; | 415 | 20 | } else { | 416 | 20 | return "collect_set"; | 417 | 20 | } | 418 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 66 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | 66 | Data>) { | 414 | 66 | return "collect_list"; | 415 | | } else { | 416 | | return "collect_set"; | 417 | | } | 418 | 66 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 1 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | | Data>) { | 414 | | return "collect_list"; | 415 | 1 | } else { | 416 | 1 | return "collect_set"; | 417 | 1 | } | 418 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 2 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | 2 | Data>) { | 414 | 2 | return "collect_list"; | 415 | | } else { | 416 | | return "collect_set"; | 417 | | } | 418 | 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 | 411 | 28 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | | Data>) { | 414 | | return "collect_list"; | 415 | 28 | } else { | 416 | 28 | return "collect_set"; | 417 | 28 | } | 418 | 28 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 10 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | 10 | Data>) { | 414 | 10 | return "collect_list"; | 415 | | } else { | 416 | | return "collect_set"; | 417 | | } | 418 | 10 | } |
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 | 411 | 49 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | | Data>) { | 414 | | return "collect_list"; | 415 | 49 | } else { | 416 | 49 | return "collect_set"; | 417 | 49 | } | 418 | 49 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 50 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | 50 | Data>) { | 414 | 50 | return "collect_list"; | 415 | | } else { | 416 | | return "collect_set"; | 417 | | } | 418 | 50 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 1 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | | Data>) { | 414 | | return "collect_list"; | 415 | 1 | } else { | 416 | 1 | return "collect_set"; | 417 | 1 | } | 418 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 411 | 1 | std::string get_name() const override { | 412 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 413 | 1 | Data>) { | 414 | 1 | return "collect_list"; | 415 | | } else { | 416 | | return "collect_set"; | 417 | | } | 418 | 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 |
419 | | |
420 | 1.44k | DataTypePtr get_return_type() const override { return return_type; }_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 19 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 26 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 53 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 53 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 26 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 20 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 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 | 420 | 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 | 420 | 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 | 420 | 34 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 44 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 32 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 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 | 420 | 97 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 123 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 23 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 19 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 17 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 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 | 420 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 36 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 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 | 420 | 66 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 64 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 420 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
|
421 | | |
422 | | void add(AggregateDataPtr __restrict place, const IColumn** columns, ssize_t row_num, |
423 | 7.47k | Arena& arena) const override { |
424 | 7.47k | auto& data = this->data(place); |
425 | 7.47k | if constexpr (HasLimit) { |
426 | 2.22k | if (data.max_size == -1) { |
427 | 778 | data.max_size = |
428 | 778 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( |
429 | 778 | columns[1]) |
430 | 778 | ->get_element(row_num); |
431 | 778 | } |
432 | 2.22k | if (data.size() >= data.max_size) { |
433 | 888 | return; |
434 | 888 | } |
435 | 2.22k | } |
436 | 1.33k | if constexpr (ENABLE_ARENA) { |
437 | 472 | data.add(*columns[0], row_num, arena); |
438 | 7.00k | } else { |
439 | 7.00k | data.add(*columns[0], row_num); |
440 | 7.00k | } |
441 | 7.47k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 38 | Arena& arena) const override { | 424 | 38 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 38 | } else { | 439 | 38 | data.add(*columns[0], row_num); | 440 | 38 | } | 441 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 25 | Arena& arena) const override { | 424 | 25 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 25 | } else { | 439 | 25 | data.add(*columns[0], row_num); | 440 | 25 | } | 441 | 25 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 62 | Arena& arena) const override { | 424 | 62 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 62 | } else { | 439 | 62 | data.add(*columns[0], row_num); | 440 | 62 | } | 441 | 62 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 38 | Arena& arena) const override { | 424 | 38 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 38 | } else { | 439 | 38 | data.add(*columns[0], row_num); | 440 | 38 | } | 441 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 394 | Arena& arena) const override { | 424 | 394 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 394 | } else { | 439 | 394 | data.add(*columns[0], row_num); | 440 | 394 | } | 441 | 394 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 223 | Arena& arena) const override { | 424 | 223 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 223 | } else { | 439 | 223 | data.add(*columns[0], row_num); | 440 | 223 | } | 441 | 223 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 45 | Arena& arena) const override { | 424 | 45 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 45 | } else { | 439 | 45 | data.add(*columns[0], row_num); | 440 | 45 | } | 441 | 45 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 80 | Arena& arena) const override { | 424 | 80 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 80 | } else { | 439 | 80 | data.add(*columns[0], row_num); | 440 | 80 | } | 441 | 80 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 144 | Arena& arena) const override { | 424 | 144 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 144 | } else { | 439 | 144 | data.add(*columns[0], row_num); | 440 | 144 | } | 441 | 144 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 116 | Arena& arena) const override { | 424 | 116 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 116 | } else { | 439 | 116 | data.add(*columns[0], row_num); | 440 | 116 | } | 441 | 116 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 38 | Arena& arena) const override { | 424 | 38 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 38 | } else { | 439 | 38 | data.add(*columns[0], row_num); | 440 | 38 | } | 441 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 38 | Arena& arena) const override { | 424 | 38 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 38 | } else { | 439 | 38 | data.add(*columns[0], row_num); | 440 | 38 | } | 441 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 48 | Arena& arena) const override { | 424 | 48 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 48 | } else { | 439 | 48 | data.add(*columns[0], row_num); | 440 | 48 | } | 441 | 48 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 44 | Arena& arena) const override { | 424 | 44 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 44 | } else { | 439 | 44 | data.add(*columns[0], row_num); | 440 | 44 | } | 441 | 44 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 40 | Arena& arena) const override { | 424 | 40 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 40 | } else { | 439 | 40 | data.add(*columns[0], row_num); | 440 | 40 | } | 441 | 40 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 26 | Arena& arena) const override { | 424 | 26 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 26 | } else { | 439 | 26 | data.add(*columns[0], row_num); | 440 | 26 | } | 441 | 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 | 423 | 54 | Arena& arena) const override { | 424 | 54 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 54 | } else { | 439 | 54 | data.add(*columns[0], row_num); | 440 | 54 | } | 441 | 54 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 74 | Arena& arena) const override { | 424 | 74 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 74 | } else { | 439 | 74 | data.add(*columns[0], row_num); | 440 | 74 | } | 441 | 74 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 72 | Arena& arena) const override { | 424 | 72 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 72 | } else { | 439 | 72 | data.add(*columns[0], row_num); | 440 | 72 | } | 441 | 72 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 94 | Arena& arena) const override { | 424 | 94 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 94 | } else { | 439 | 94 | data.add(*columns[0], row_num); | 440 | 94 | } | 441 | 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 | 423 | 346 | Arena& arena) const override { | 424 | 346 | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | 346 | if constexpr (ENABLE_ARENA) { | 437 | 346 | data.add(*columns[0], row_num, arena); | 438 | | } else { | 439 | | data.add(*columns[0], row_num); | 440 | | } | 441 | 346 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 1.71k | Arena& arena) const override { | 424 | 1.71k | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 1.71k | } else { | 439 | 1.71k | data.add(*columns[0], row_num); | 440 | 1.71k | } | 441 | 1.71k | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 1.36k | Arena& arena) const override { | 424 | 1.36k | auto& data = this->data(place); | 425 | | if constexpr (HasLimit) { | 426 | | if (data.max_size == -1) { | 427 | | data.max_size = | 428 | | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | | columns[1]) | 430 | | ->get_element(row_num); | 431 | | } | 432 | | if (data.size() >= data.max_size) { | 433 | | return; | 434 | | } | 435 | | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 1.36k | } else { | 439 | 1.36k | data.add(*columns[0], row_num); | 440 | 1.36k | } | 441 | 1.36k | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 45 | Arena& arena) const override { | 424 | 45 | auto& data = this->data(place); | 425 | 45 | if constexpr (HasLimit) { | 426 | 45 | if (data.max_size == -1) { | 427 | 19 | data.max_size = | 428 | 19 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 19 | columns[1]) | 430 | 19 | ->get_element(row_num); | 431 | 19 | } | 432 | 45 | if (data.size() >= data.max_size) { | 433 | 25 | return; | 434 | 25 | } | 435 | 45 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 45 | } else { | 439 | 45 | data.add(*columns[0], row_num); | 440 | 45 | } | 441 | 45 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 38 | Arena& arena) const override { | 424 | 38 | auto& data = this->data(place); | 425 | 38 | if constexpr (HasLimit) { | 426 | 38 | if (data.max_size == -1) { | 427 | 18 | data.max_size = | 428 | 18 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 18 | columns[1]) | 430 | 18 | ->get_element(row_num); | 431 | 18 | } | 432 | 38 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 38 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 38 | } else { | 439 | 38 | data.add(*columns[0], row_num); | 440 | 38 | } | 441 | 38 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 59 | Arena& arena) const override { | 424 | 59 | auto& data = this->data(place); | 425 | 59 | if constexpr (HasLimit) { | 426 | 59 | if (data.max_size == -1) { | 427 | 15 | data.max_size = | 428 | 15 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 15 | columns[1]) | 430 | 15 | ->get_element(row_num); | 431 | 15 | } | 432 | 59 | if (data.size() >= data.max_size) { | 433 | 32 | return; | 434 | 32 | } | 435 | 59 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 59 | } else { | 439 | 59 | data.add(*columns[0], row_num); | 440 | 59 | } | 441 | 59 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 52 | Arena& arena) const override { | 424 | 52 | auto& data = this->data(place); | 425 | 52 | if constexpr (HasLimit) { | 426 | 52 | if (data.max_size == -1) { | 427 | 14 | data.max_size = | 428 | 14 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 14 | columns[1]) | 430 | 14 | ->get_element(row_num); | 431 | 14 | } | 432 | 52 | if (data.size() >= data.max_size) { | 433 | 26 | return; | 434 | 26 | } | 435 | 52 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 52 | } else { | 439 | 52 | data.add(*columns[0], row_num); | 440 | 52 | } | 441 | 52 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 8 | return; | 434 | 8 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 12 | return; | 434 | 12 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 12 | return; | 434 | 12 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 16 | return; | 434 | 16 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 24 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 24 | Arena& arena) const override { | 424 | 24 | auto& data = this->data(place); | 425 | 24 | if constexpr (HasLimit) { | 426 | 24 | if (data.max_size == -1) { | 427 | 4 | data.max_size = | 428 | 4 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 4 | columns[1]) | 430 | 4 | ->get_element(row_num); | 431 | 4 | } | 432 | 24 | if (data.size() >= data.max_size) { | 433 | 20 | return; | 434 | 20 | } | 435 | 24 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 24 | } else { | 439 | 24 | data.add(*columns[0], row_num); | 440 | 24 | } | 441 | 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 | 423 | 63 | Arena& arena) const override { | 424 | 63 | auto& data = this->data(place); | 425 | 63 | if constexpr (HasLimit) { | 426 | 63 | if (data.max_size == -1) { | 427 | 12 | data.max_size = | 428 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 12 | columns[1]) | 430 | 12 | ->get_element(row_num); | 431 | 12 | } | 432 | 63 | if (data.size() >= data.max_size) { | 433 | 34 | return; | 434 | 34 | } | 435 | 63 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 63 | } else { | 439 | 63 | data.add(*columns[0], row_num); | 440 | 63 | } | 441 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 63 | Arena& arena) const override { | 424 | 63 | auto& data = this->data(place); | 425 | 63 | if constexpr (HasLimit) { | 426 | 63 | if (data.max_size == -1) { | 427 | 12 | data.max_size = | 428 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 12 | columns[1]) | 430 | 12 | ->get_element(row_num); | 431 | 12 | } | 432 | 63 | if (data.size() >= data.max_size) { | 433 | 38 | return; | 434 | 38 | } | 435 | 63 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 63 | } else { | 439 | 63 | data.add(*columns[0], row_num); | 440 | 63 | } | 441 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 63 | Arena& arena) const override { | 424 | 63 | auto& data = this->data(place); | 425 | 63 | if constexpr (HasLimit) { | 426 | 63 | if (data.max_size == -1) { | 427 | 12 | data.max_size = | 428 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 12 | columns[1]) | 430 | 12 | ->get_element(row_num); | 431 | 12 | } | 432 | 63 | if (data.size() >= data.max_size) { | 433 | 41 | return; | 434 | 41 | } | 435 | 63 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 63 | } else { | 439 | 63 | data.add(*columns[0], row_num); | 440 | 63 | } | 441 | 63 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 63 | Arena& arena) const override { | 424 | 63 | auto& data = this->data(place); | 425 | 63 | if constexpr (HasLimit) { | 426 | 63 | if (data.max_size == -1) { | 427 | 12 | data.max_size = | 428 | 12 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 12 | columns[1]) | 430 | 12 | ->get_element(row_num); | 431 | 12 | } | 432 | 63 | if (data.size() >= data.max_size) { | 433 | 42 | return; | 434 | 42 | } | 435 | 63 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 63 | } else { | 439 | 63 | data.add(*columns[0], row_num); | 440 | 63 | } | 441 | 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 | 423 | 126 | Arena& arena) const override { | 424 | 126 | auto& data = this->data(place); | 425 | 126 | if constexpr (HasLimit) { | 426 | 126 | if (data.max_size == -1) { | 427 | 20 | data.max_size = | 428 | 20 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 20 | columns[1]) | 430 | 20 | ->get_element(row_num); | 431 | 20 | } | 432 | 126 | if (data.size() >= data.max_size) { | 433 | 106 | return; | 434 | 106 | } | 435 | 126 | } | 436 | 126 | if constexpr (ENABLE_ARENA) { | 437 | 126 | data.add(*columns[0], row_num, arena); | 438 | | } else { | 439 | | data.add(*columns[0], row_num); | 440 | | } | 441 | 126 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 120 | Arena& arena) const override { | 424 | 120 | auto& data = this->data(place); | 425 | 120 | if constexpr (HasLimit) { | 426 | 120 | if (data.max_size == -1) { | 427 | 16 | data.max_size = | 428 | 16 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 16 | columns[1]) | 430 | 16 | ->get_element(row_num); | 431 | 16 | } | 432 | 120 | if (data.size() >= data.max_size) { | 433 | 104 | return; | 434 | 104 | } | 435 | 120 | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 120 | } else { | 439 | 120 | data.add(*columns[0], row_num); | 440 | 120 | } | 441 | 120 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 423 | 1.19k | Arena& arena) const override { | 424 | 1.19k | auto& data = this->data(place); | 425 | 1.19k | if constexpr (HasLimit) { | 426 | 1.19k | if (data.max_size == -1) { | 427 | 572 | data.max_size = | 428 | 572 | (UInt64)assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>( | 429 | 572 | columns[1]) | 430 | 572 | ->get_element(row_num); | 431 | 572 | } | 432 | 1.19k | if (data.size() >= data.max_size) { | 433 | 172 | return; | 434 | 172 | } | 435 | 1.19k | } | 436 | | if constexpr (ENABLE_ARENA) { | 437 | | data.add(*columns[0], row_num, arena); | 438 | 1.19k | } else { | 439 | 1.19k | data.add(*columns[0], row_num); | 440 | 1.19k | } | 441 | 1.19k | } |
|
442 | | |
443 | | void merge(AggregateDataPtr __restrict place, ConstAggregateDataPtr rhs, |
444 | 1.17k | Arena& arena) const override { |
445 | 1.17k | auto& data = this->data(place); |
446 | 1.17k | const auto& rhs_data = this->data(rhs); |
447 | 1.17k | if constexpr (ENABLE_ARENA) { |
448 | 242 | data.merge(rhs_data, arena); |
449 | 935 | } else { |
450 | 935 | data.merge(rhs_data); |
451 | 935 | } |
452 | 1.17k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 7 | Arena& arena) const override { | 445 | 7 | auto& data = this->data(place); | 446 | 7 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 7 | } else { | 450 | 7 | data.merge(rhs_data); | 451 | 7 | } | 452 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 6 | Arena& arena) const override { | 445 | 6 | auto& data = this->data(place); | 446 | 6 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 6 | } else { | 450 | 6 | data.merge(rhs_data); | 451 | 6 | } | 452 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 8 | Arena& arena) const override { | 445 | 8 | auto& data = this->data(place); | 446 | 8 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 8 | } else { | 450 | 8 | data.merge(rhs_data); | 451 | 8 | } | 452 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 5 | Arena& arena) const override { | 445 | 5 | auto& data = this->data(place); | 446 | 5 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 5 | } else { | 450 | 5 | data.merge(rhs_data); | 451 | 5 | } | 452 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 8 | Arena& arena) const override { | 445 | 8 | auto& data = this->data(place); | 446 | 8 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 8 | } else { | 450 | 8 | data.merge(rhs_data); | 451 | 8 | } | 452 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 323 | Arena& arena) const override { | 445 | 323 | auto& data = this->data(place); | 446 | 323 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 323 | } else { | 450 | 323 | data.merge(rhs_data); | 451 | 323 | } | 452 | 323 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 165 | Arena& arena) const override { | 445 | 165 | auto& data = this->data(place); | 446 | 165 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 165 | } else { | 450 | 165 | data.merge(rhs_data); | 451 | 165 | } | 452 | 165 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 11 | Arena& arena) const override { | 445 | 11 | auto& data = this->data(place); | 446 | 11 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 11 | } else { | 450 | 11 | data.merge(rhs_data); | 451 | 11 | } | 452 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 20 | Arena& arena) const override { | 445 | 20 | auto& data = this->data(place); | 446 | 20 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 20 | } else { | 450 | 20 | data.merge(rhs_data); | 451 | 20 | } | 452 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 6 | Arena& arena) const override { | 445 | 6 | auto& data = this->data(place); | 446 | 6 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 6 | } else { | 450 | 6 | data.merge(rhs_data); | 451 | 6 | } | 452 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 9 | Arena& arena) const override { | 445 | 9 | auto& data = this->data(place); | 446 | 9 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 9 | } else { | 450 | 9 | data.merge(rhs_data); | 451 | 9 | } | 452 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 7 | Arena& arena) const override { | 445 | 7 | auto& data = this->data(place); | 446 | 7 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 7 | } else { | 450 | 7 | data.merge(rhs_data); | 451 | 7 | } | 452 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 7 | Arena& arena) const override { | 445 | 7 | auto& data = this->data(place); | 446 | 7 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 7 | } else { | 450 | 7 | data.merge(rhs_data); | 451 | 7 | } | 452 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 10 | Arena& arena) const override { | 445 | 10 | auto& data = this->data(place); | 446 | 10 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 10 | } else { | 450 | 10 | data.merge(rhs_data); | 451 | 10 | } | 452 | 10 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 6 | Arena& arena) const override { | 445 | 6 | auto& data = this->data(place); | 446 | 6 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 6 | } else { | 450 | 6 | data.merge(rhs_data); | 451 | 6 | } | 452 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 2 | Arena& arena) const override { | 445 | 2 | auto& data = this->data(place); | 446 | 2 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 2 | } else { | 450 | 2 | data.merge(rhs_data); | 451 | 2 | } | 452 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 2 | Arena& arena) const override { | 445 | 2 | auto& data = this->data(place); | 446 | 2 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 2 | } else { | 450 | 2 | data.merge(rhs_data); | 451 | 2 | } | 452 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 6 | Arena& arena) const override { | 445 | 6 | auto& data = this->data(place); | 446 | 6 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 6 | } else { | 450 | 6 | data.merge(rhs_data); | 451 | 6 | } | 452 | 6 | } |
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 | 444 | 9 | Arena& arena) const override { | 445 | 9 | auto& data = this->data(place); | 446 | 9 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 9 | } else { | 450 | 9 | data.merge(rhs_data); | 451 | 9 | } | 452 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 15 | Arena& arena) const override { | 445 | 15 | auto& data = this->data(place); | 446 | 15 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 15 | } else { | 450 | 15 | data.merge(rhs_data); | 451 | 15 | } | 452 | 15 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 9 | Arena& arena) const override { | 445 | 9 | auto& data = this->data(place); | 446 | 9 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 9 | } else { | 450 | 9 | data.merge(rhs_data); | 451 | 9 | } | 452 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 15 | Arena& arena) const override { | 445 | 15 | auto& data = this->data(place); | 446 | 15 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 15 | } else { | 450 | 15 | data.merge(rhs_data); | 451 | 15 | } | 452 | 15 | } |
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 | 444 | 226 | Arena& arena) const override { | 445 | 226 | auto& data = this->data(place); | 446 | 226 | const auto& rhs_data = this->data(rhs); | 447 | 226 | if constexpr (ENABLE_ARENA) { | 448 | 226 | data.merge(rhs_data, arena); | 449 | | } else { | 450 | | data.merge(rhs_data); | 451 | | } | 452 | 226 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 30 | Arena& arena) const override { | 445 | 30 | auto& data = this->data(place); | 446 | 30 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 30 | } else { | 450 | 30 | data.merge(rhs_data); | 451 | 30 | } | 452 | 30 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 6 | Arena& arena) const override { | 445 | 6 | auto& data = this->data(place); | 446 | 6 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 6 | } else { | 450 | 6 | data.merge(rhs_data); | 451 | 6 | } | 452 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 40 | Arena& arena) const override { | 445 | 40 | auto& data = this->data(place); | 446 | 40 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 40 | } else { | 450 | 40 | data.merge(rhs_data); | 451 | 40 | } | 452 | 40 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 40 | Arena& arena) const override { | 445 | 40 | auto& data = this->data(place); | 446 | 40 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 40 | } else { | 450 | 40 | data.merge(rhs_data); | 451 | 40 | } | 452 | 40 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 12 | Arena& arena) const override { | 445 | 12 | auto& data = this->data(place); | 446 | 12 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 12 | } else { | 450 | 12 | data.merge(rhs_data); | 451 | 12 | } | 452 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 11 | Arena& arena) const override { | 445 | 11 | auto& data = this->data(place); | 446 | 11 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 11 | } else { | 450 | 11 | data.merge(rhs_data); | 451 | 11 | } | 452 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 4 | Arena& arena) const override { | 445 | 4 | auto& data = this->data(place); | 446 | 4 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 4 | } else { | 450 | 4 | data.merge(rhs_data); | 451 | 4 | } | 452 | 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 | 444 | 13 | Arena& arena) const override { | 445 | 13 | auto& data = this->data(place); | 446 | 13 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 13 | } else { | 450 | 13 | data.merge(rhs_data); | 451 | 13 | } | 452 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 13 | Arena& arena) const override { | 445 | 13 | auto& data = this->data(place); | 446 | 13 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 13 | } else { | 450 | 13 | data.merge(rhs_data); | 451 | 13 | } | 452 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 13 | Arena& arena) const override { | 445 | 13 | auto& data = this->data(place); | 446 | 13 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 13 | } else { | 450 | 13 | data.merge(rhs_data); | 451 | 13 | } | 452 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 13 | Arena& arena) const override { | 445 | 13 | auto& data = this->data(place); | 446 | 13 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 13 | } else { | 450 | 13 | data.merge(rhs_data); | 451 | 13 | } | 452 | 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 | 444 | 16 | Arena& arena) const override { | 445 | 16 | auto& data = this->data(place); | 446 | 16 | const auto& rhs_data = this->data(rhs); | 447 | 16 | if constexpr (ENABLE_ARENA) { | 448 | 16 | data.merge(rhs_data, arena); | 449 | | } else { | 450 | | data.merge(rhs_data); | 451 | | } | 452 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 444 | 16 | Arena& arena) const override { | 445 | 16 | auto& data = this->data(place); | 446 | 16 | const auto& rhs_data = this->data(rhs); | 447 | | if constexpr (ENABLE_ARENA) { | 448 | | data.merge(rhs_data, arena); | 449 | 16 | } else { | 450 | 16 | data.merge(rhs_data); | 451 | 16 | } | 452 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE |
453 | | |
454 | 1.26k | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { |
455 | 1.26k | this->data(place).write(buf); |
456 | 1.26k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 7 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 7 | this->data(place).write(buf); | 456 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 6 | this->data(place).write(buf); | 456 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 8 | this->data(place).write(buf); | 456 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 5 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 5 | this->data(place).write(buf); | 456 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 8 | this->data(place).write(buf); | 456 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 362 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 362 | this->data(place).write(buf); | 456 | 362 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 207 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 207 | this->data(place).write(buf); | 456 | 207 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 12 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 12 | this->data(place).write(buf); | 456 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 22 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 22 | this->data(place).write(buf); | 456 | 22 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 6 | this->data(place).write(buf); | 456 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 9 | this->data(place).write(buf); | 456 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 7 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 7 | this->data(place).write(buf); | 456 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 7 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 7 | this->data(place).write(buf); | 456 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 10 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 10 | this->data(place).write(buf); | 456 | 10 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 6 | this->data(place).write(buf); | 456 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 2 | this->data(place).write(buf); | 456 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 2 | this->data(place).write(buf); | 456 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 6 | this->data(place).write(buf); | 456 | 6 | } |
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 | 454 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 9 | this->data(place).write(buf); | 456 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 15 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 15 | this->data(place).write(buf); | 456 | 15 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 9 | this->data(place).write(buf); | 456 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 15 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 15 | this->data(place).write(buf); | 456 | 15 | } |
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 | 454 | 220 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 220 | this->data(place).write(buf); | 456 | 220 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 30 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 30 | this->data(place).write(buf); | 456 | 30 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 6 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 6 | this->data(place).write(buf); | 456 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 43 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 43 | this->data(place).write(buf); | 456 | 43 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 43 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 43 | this->data(place).write(buf); | 456 | 43 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 13 | this->data(place).write(buf); | 456 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 12 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 12 | this->data(place).write(buf); | 456 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 4 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 4 | this->data(place).write(buf); | 456 | 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 | 454 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 13 | this->data(place).write(buf); | 456 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 13 | this->data(place).write(buf); | 456 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 13 | this->data(place).write(buf); | 456 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 13 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 13 | this->data(place).write(buf); | 456 | 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 | 454 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 16 | this->data(place).write(buf); | 456 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 454 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 455 | 16 | this->data(place).write(buf); | 456 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE |
457 | | |
458 | | void deserialize(AggregateDataPtr __restrict place, BufferReadable& buf, |
459 | 1.17k | Arena&) const override { |
460 | 1.17k | this->data(place).read(buf); |
461 | 1.17k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 7 | Arena&) const override { | 460 | 7 | this->data(place).read(buf); | 461 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 6 | Arena&) const override { | 460 | 6 | this->data(place).read(buf); | 461 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 8 | Arena&) const override { | 460 | 8 | this->data(place).read(buf); | 461 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 5 | Arena&) const override { | 460 | 5 | this->data(place).read(buf); | 461 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 8 | Arena&) const override { | 460 | 8 | this->data(place).read(buf); | 461 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 323 | Arena&) const override { | 460 | 323 | this->data(place).read(buf); | 461 | 323 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 165 | Arena&) const override { | 460 | 165 | this->data(place).read(buf); | 461 | 165 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 11 | Arena&) const override { | 460 | 11 | this->data(place).read(buf); | 461 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 20 | Arena&) const override { | 460 | 20 | this->data(place).read(buf); | 461 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 6 | Arena&) const override { | 460 | 6 | this->data(place).read(buf); | 461 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 9 | Arena&) const override { | 460 | 9 | this->data(place).read(buf); | 461 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 7 | Arena&) const override { | 460 | 7 | this->data(place).read(buf); | 461 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 7 | Arena&) const override { | 460 | 7 | this->data(place).read(buf); | 461 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 10 | Arena&) const override { | 460 | 10 | this->data(place).read(buf); | 461 | 10 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 6 | Arena&) const override { | 460 | 6 | this->data(place).read(buf); | 461 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 2 | Arena&) const override { | 460 | 2 | this->data(place).read(buf); | 461 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 2 | Arena&) const override { | 460 | 2 | this->data(place).read(buf); | 461 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 6 | Arena&) const override { | 460 | 6 | this->data(place).read(buf); | 461 | 6 | } |
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 | 459 | 9 | Arena&) const override { | 460 | 9 | this->data(place).read(buf); | 461 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 15 | Arena&) const override { | 460 | 15 | this->data(place).read(buf); | 461 | 15 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 9 | Arena&) const override { | 460 | 9 | this->data(place).read(buf); | 461 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 15 | Arena&) const override { | 460 | 15 | this->data(place).read(buf); | 461 | 15 | } |
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 | 459 | 226 | Arena&) const override { | 460 | 226 | this->data(place).read(buf); | 461 | 226 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 30 | Arena&) const override { | 460 | 30 | this->data(place).read(buf); | 461 | 30 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 6 | Arena&) const override { | 460 | 6 | this->data(place).read(buf); | 461 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 40 | Arena&) const override { | 460 | 40 | this->data(place).read(buf); | 461 | 40 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 40 | Arena&) const override { | 460 | 40 | this->data(place).read(buf); | 461 | 40 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 12 | Arena&) const override { | 460 | 12 | this->data(place).read(buf); | 461 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 11 | Arena&) const override { | 460 | 11 | this->data(place).read(buf); | 461 | 11 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 4 | Arena&) const override { | 460 | 4 | this->data(place).read(buf); | 461 | 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 | 459 | 13 | Arena&) const override { | 460 | 13 | this->data(place).read(buf); | 461 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 13 | Arena&) const override { | 460 | 13 | this->data(place).read(buf); | 461 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 13 | Arena&) const override { | 460 | 13 | this->data(place).read(buf); | 461 | 13 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 13 | Arena&) const override { | 460 | 13 | this->data(place).read(buf); | 461 | 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 | 459 | 16 | Arena&) const override { | 460 | 16 | this->data(place).read(buf); | 461 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 459 | 16 | Arena&) const override { | 460 | 16 | this->data(place).read(buf); | 461 | 16 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE |
462 | | |
463 | 2.18k | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
464 | 2.18k | auto& to_arr = assert_cast<ColumnArray&>(to); |
465 | 2.18k | auto& to_nested_col = to_arr.get_data(); |
466 | 2.18k | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); |
467 | 2.18k | this->data(place).insert_result_into(col_null->get_nested_column()); |
468 | 2.18k | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); |
469 | 2.18k | to_arr.get_offsets().push_back(to_nested_col.size()); |
470 | 2.18k | } _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 7 | auto& to_nested_col = to_arr.get_data(); | 466 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 7 | auto& to_nested_col = to_arr.get_data(); | 466 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 68 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 68 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 68 | auto& to_nested_col = to_arr.get_data(); | 466 | 68 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 68 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 68 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 68 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 68 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 6 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 6 | auto& to_nested_col = to_arr.get_data(); | 466 | 6 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 220 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 220 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 220 | auto& to_nested_col = to_arr.get_data(); | 466 | 220 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 220 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 220 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 220 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 220 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 49 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 49 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 49 | auto& to_nested_col = to_arr.get_data(); | 466 | 49 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 49 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 49 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 49 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 49 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 12 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 12 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 12 | auto& to_nested_col = to_arr.get_data(); | 466 | 12 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 12 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 12 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 12 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 21 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 21 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 21 | auto& to_nested_col = to_arr.get_data(); | 466 | 21 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 21 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 21 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 21 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 8 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 8 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 8 | auto& to_nested_col = to_arr.get_data(); | 466 | 8 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 8 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 8 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 8 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 7 | auto& to_nested_col = to_arr.get_data(); | 466 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 7 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 7 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 7 | auto& to_nested_col = to_arr.get_data(); | 466 | 7 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 7 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 7 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 7 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 6 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 6 | auto& to_nested_col = to_arr.get_data(); | 466 | 6 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 6 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 2 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 2 | auto& to_nested_col = to_arr.get_data(); | 466 | 2 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 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 | 463 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 14 | auto& to_nested_col = to_arr.get_data(); | 466 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 14 | auto& to_nested_col = to_arr.get_data(); | 466 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 10 | auto& to_nested_col = to_arr.get_data(); | 466 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 14 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 14 | auto& to_nested_col = to_arr.get_data(); | 466 | 14 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 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 | 463 | 236 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 236 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 236 | auto& to_nested_col = to_arr.get_data(); | 466 | 236 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 236 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 236 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 236 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 236 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 47 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 47 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 47 | auto& to_nested_col = to_arr.get_data(); | 466 | 47 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 47 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 47 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 47 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 47 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 612 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 612 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 612 | auto& to_nested_col = to_arr.get_data(); | 466 | 612 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 612 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 612 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 612 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 612 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 10 | auto& to_nested_col = to_arr.get_data(); | 466 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 10 | auto& to_nested_col = to_arr.get_data(); | 466 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 10 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 10 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 10 | auto& to_nested_col = to_arr.get_data(); | 466 | 10 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 10 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 10 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 10 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 10 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 4 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 4 | auto& to_nested_col = to_arr.get_data(); | 466 | 4 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 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 | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 9 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 9 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 9 | auto& to_nested_col = to_arr.get_data(); | 466 | 9 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 9 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 9 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 9 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 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 | 463 | 20 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 20 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 20 | auto& to_nested_col = to_arr.get_data(); | 466 | 20 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 20 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 20 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 20 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 16 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 16 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 16 | auto& to_nested_col = to_arr.get_data(); | 466 | 16 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 16 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 16 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 16 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 463 | 600 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 464 | 600 | auto& to_arr = assert_cast<ColumnArray&>(to); | 465 | 600 | auto& to_nested_col = to_arr.get_data(); | 466 | 600 | auto* col_null = assert_cast<ColumnNullable*>(&to_nested_col); | 467 | 600 | this->data(place).insert_result_into(col_null->get_nested_column()); | 468 | 600 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 469 | 600 | to_arr.get_offsets().push_back(to_nested_col.size()); | 470 | 600 | } |
|
471 | | |
472 | | private: |
473 | | DataTypePtr return_type; |
474 | | }; |
475 | | |
476 | | } // namespace doris |