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 <cctz/time_zone.h> |
21 | | #include <glog/logging.h> |
22 | | |
23 | | #include <cstddef> |
24 | | #include <cstring> |
25 | | #include <limits> |
26 | | #include <memory> |
27 | | #include <new> |
28 | | #include <string> |
29 | | #include <type_traits> |
30 | | |
31 | | #include "common/exception.h" |
32 | | #include "core/assert_cast.h" |
33 | | #include "core/column/column.h" |
34 | | #include "core/column/column_array.h" |
35 | | #include "core/column/column_decimal.h" |
36 | | #include "core/column/column_nullable.h" |
37 | | #include "core/column/column_string.h" |
38 | | #include "core/data_type/data_type.h" |
39 | | #include "core/data_type/data_type_array.h" |
40 | | #include "core/data_type/data_type_nullable.h" |
41 | | #include "core/pod_array_fwd.h" |
42 | | #include "core/string_buffer.hpp" |
43 | | #include "core/string_ref.h" |
44 | | #include "core/types.h" |
45 | | #include "exprs/aggregate/aggregate_function.h" |
46 | | #include "util/var_int.h" |
47 | | |
48 | | namespace doris { |
49 | | template <PrimitiveType T, bool HasLimit> |
50 | | struct AggregateFunctionCollectSetData { |
51 | | static constexpr PrimitiveType PType = T; |
52 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
53 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
54 | | using SelfType = AggregateFunctionCollectSetData; |
55 | | using Set = doris::flat_hash_set<ElementType>; |
56 | | Set data_set; |
57 | | Int64 max_size = -1; |
58 | | |
59 | 569 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 485 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 23 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 2 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 2 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 24 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 21 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 4 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 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 | 59 | 2 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 59 | 2 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 |
60 | | |
61 | 995 | size_t size() const { return data_set.size(); }Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 61 | 886 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 61 | 71 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 61 | 2 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 61 | 2 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 61 | 14 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 61 | 8 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 61 | 4 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 61 | 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 | 61 | 2 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 61 | 2 | size_t size() const { return data_set.size(); } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE4sizeEv |
62 | | |
63 | 529 | void add(const IColumn& column, size_t row_num) { |
64 | 529 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) |
65 | 529 | .get_data()[row_num]); |
66 | 529 | } Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 251 | void add(const IColumn& column, size_t row_num) { | 64 | 251 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 251 | .get_data()[row_num]); | 66 | 251 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 23 | void add(const IColumn& column, size_t row_num) { | 64 | 23 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 23 | .get_data()[row_num]); | 66 | 23 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE3addERKNS_7IColumnEm 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 46 | void add(const IColumn& column, size_t row_num) { | 64 | 46 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 46 | .get_data()[row_num]); | 66 | 46 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 21 | void add(const IColumn& column, size_t row_num) { | 64 | 21 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 21 | .get_data()[row_num]); | 66 | 21 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 120 | void add(const IColumn& column, size_t row_num) { | 64 | 120 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 120 | .get_data()[row_num]); | 66 | 120 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 44 | void add(const IColumn& column, size_t row_num) { | 64 | 44 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 44 | .get_data()[row_num]); | 66 | 44 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 63 | 24 | void add(const IColumn& column, size_t row_num) { | 64 | 24 | data_set.insert(assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column) | 65 | 24 | .get_data()[row_num]); | 66 | 24 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE3addERKNS_7IColumnEm 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 |
67 | | |
68 | 122 | void merge(const SelfType& rhs) { |
69 | 122 | if constexpr (HasLimit) { |
70 | 99 | if (max_size == -1) { |
71 | 14 | max_size = rhs.max_size; |
72 | 14 | } |
73 | | |
74 | 105 | for (auto& rhs_elem : rhs.data_set) { |
75 | 105 | if (size() >= max_size) { |
76 | 11 | return; |
77 | 11 | } |
78 | 94 | data_set.insert(rhs_elem); |
79 | 94 | } |
80 | 99 | } else { |
81 | 76 | for (const auto& elem : rhs.data_set) { |
82 | 76 | data_set.insert(elem); |
83 | 76 | } |
84 | 23 | } |
85 | 122 | } Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 68 | 91 | void merge(const SelfType& rhs) { | 69 | 91 | if constexpr (HasLimit) { | 70 | 91 | if (max_size == -1) { | 71 | 14 | max_size = rhs.max_size; | 72 | 14 | } | 73 | | | 74 | 91 | for (auto& rhs_elem : rhs.data_set) { | 75 | 91 | if (size() >= max_size) { | 76 | 9 | return; | 77 | 9 | } | 78 | 82 | data_set.insert(rhs_elem); | 79 | 82 | } | 80 | | } else { | 81 | | for (const auto& elem : rhs.data_set) { | 82 | | data_set.insert(elem); | 83 | | } | 84 | | } | 85 | 91 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 68 | 8 | void merge(const SelfType& rhs) { | 69 | 8 | if constexpr (HasLimit) { | 70 | 8 | if (max_size == -1) { | 71 | 0 | max_size = rhs.max_size; | 72 | 0 | } | 73 | | | 74 | 14 | for (auto& rhs_elem : rhs.data_set) { | 75 | 14 | if (size() >= max_size) { | 76 | 2 | return; | 77 | 2 | } | 78 | 12 | data_set.insert(rhs_elem); | 79 | 12 | } | 80 | | } else { | 81 | | for (const auto& elem : rhs.data_set) { | 82 | | data_set.insert(elem); | 83 | | } | 84 | | } | 85 | 8 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 1 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 1 | } else { | 81 | 1 | for (const auto& elem : rhs.data_set) { | 82 | 0 | data_set.insert(elem); | 83 | 0 | } | 84 | 1 | } | 85 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 1 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 1 | } else { | 81 | 1 | for (const auto& elem : rhs.data_set) { | 82 | 0 | data_set.insert(elem); | 83 | 0 | } | 84 | 1 | } | 85 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 8 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 8 | } else { | 81 | 17 | for (const auto& elem : rhs.data_set) { | 82 | 17 | data_set.insert(elem); | 83 | 17 | } | 84 | 8 | } | 85 | 8 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 7 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 7 | } else { | 81 | 12 | for (const auto& elem : rhs.data_set) { | 82 | 12 | data_set.insert(elem); | 83 | 12 | } | 84 | 7 | } | 85 | 7 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 2 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 2 | } else { | 81 | 30 | for (const auto& elem : rhs.data_set) { | 82 | 30 | data_set.insert(elem); | 83 | 30 | } | 84 | 2 | } | 85 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 2 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 2 | } else { | 81 | 11 | for (const auto& elem : rhs.data_set) { | 82 | 11 | data_set.insert(elem); | 83 | 11 | } | 84 | 2 | } | 85 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 1 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 1 | } else { | 81 | 1 | for (const auto& elem : rhs.data_set) { | 82 | 0 | data_set.insert(elem); | 83 | 0 | } | 84 | 1 | } | 85 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 68 | 1 | void merge(const SelfType& rhs) { | 69 | | if constexpr (HasLimit) { | 70 | | if (max_size == -1) { | 71 | | max_size = rhs.max_size; | 72 | | } | 73 | | | 74 | | for (auto& rhs_elem : rhs.data_set) { | 75 | | if (size() >= max_size) { | 76 | | return; | 77 | | } | 78 | | data_set.insert(rhs_elem); | 79 | | } | 80 | 1 | } else { | 81 | 6 | for (const auto& elem : rhs.data_set) { | 82 | 6 | data_set.insert(elem); | 83 | 6 | } | 84 | 1 | } | 85 | 1 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EE5mergeERKS2_ |
86 | | |
87 | 131 | void write(BufferWritable& buf) const { |
88 | 131 | buf.write_var_uint(data_set.size()); |
89 | 162 | for (const auto& value : data_set) { |
90 | 162 | buf.write_binary(value); |
91 | 162 | } |
92 | 131 | write_var_int(max_size, buf); |
93 | 131 | } Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 90 | void write(BufferWritable& buf) const { | 88 | 90 | buf.write_var_uint(data_set.size()); | 89 | 90 | for (const auto& value : data_set) { | 90 | 62 | buf.write_binary(value); | 91 | 62 | } | 92 | 90 | write_var_int(max_size, buf); | 93 | 90 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 9 | void write(BufferWritable& buf) const { | 88 | 9 | buf.write_var_uint(data_set.size()); | 89 | 17 | for (const auto& value : data_set) { | 90 | 17 | buf.write_binary(value); | 91 | 17 | } | 92 | 9 | write_var_int(max_size, buf); | 93 | 9 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE 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 Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE5writeERNS_14BufferWritableE 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 Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 1 | void write(BufferWritable& buf) const { | 88 | 1 | buf.write_var_uint(data_set.size()); | 89 | 1 | for (const auto& value : data_set) { | 90 | 0 | buf.write_binary(value); | 91 | 0 | } | 92 | 1 | write_var_int(max_size, buf); | 93 | 1 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 1 | void write(BufferWritable& buf) const { | 88 | 1 | buf.write_var_uint(data_set.size()); | 89 | 1 | for (const auto& value : data_set) { | 90 | 0 | buf.write_binary(value); | 91 | 0 | } | 92 | 1 | write_var_int(max_size, buf); | 93 | 1 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 16 | void write(BufferWritable& buf) const { | 88 | 16 | buf.write_var_uint(data_set.size()); | 89 | 21 | for (const auto& value : data_set) { | 90 | 21 | buf.write_binary(value); | 91 | 21 | } | 92 | 16 | write_var_int(max_size, buf); | 93 | 16 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 8 | void write(BufferWritable& buf) const { | 88 | 8 | buf.write_var_uint(data_set.size()); | 89 | 15 | for (const auto& value : data_set) { | 90 | 15 | buf.write_binary(value); | 91 | 15 | } | 92 | 8 | write_var_int(max_size, buf); | 93 | 8 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 2 | void write(BufferWritable& buf) const { | 88 | 2 | buf.write_var_uint(data_set.size()); | 89 | 30 | for (const auto& value : data_set) { | 90 | 30 | buf.write_binary(value); | 91 | 30 | } | 92 | 2 | write_var_int(max_size, buf); | 93 | 2 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 2 | void write(BufferWritable& buf) const { | 88 | 2 | buf.write_var_uint(data_set.size()); | 89 | 11 | for (const auto& value : data_set) { | 90 | 11 | buf.write_binary(value); | 91 | 11 | } | 92 | 2 | write_var_int(max_size, buf); | 93 | 2 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 1 | void write(BufferWritable& buf) const { | 88 | 1 | buf.write_var_uint(data_set.size()); | 89 | 1 | for (const auto& value : data_set) { | 90 | 0 | buf.write_binary(value); | 91 | 0 | } | 92 | 1 | write_var_int(max_size, buf); | 93 | 1 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 87 | 1 | void write(BufferWritable& buf) const { | 88 | 1 | buf.write_var_uint(data_set.size()); | 89 | 6 | for (const auto& value : data_set) { | 90 | 6 | buf.write_binary(value); | 91 | 6 | } | 92 | 1 | write_var_int(max_size, buf); | 93 | 1 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE5writeERNS_14BufferWritableE 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 |
94 | | |
95 | 145 | void read(BufferReadable& buf) { |
96 | 145 | uint64_t new_size = 0; |
97 | 145 | buf.read_var_uint(new_size); |
98 | 145 | ElementType x; |
99 | 321 | for (size_t i = 0; i < new_size; ++i) { |
100 | 176 | buf.read_binary(x); |
101 | 176 | data_set.insert(x); |
102 | 176 | } |
103 | 145 | read_var_int(max_size, buf); |
104 | 145 | } Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 114 | void read(BufferReadable& buf) { | 96 | 114 | uint64_t new_size = 0; | 97 | 114 | buf.read_var_uint(new_size); | 98 | 114 | ElementType x; | 99 | 200 | for (size_t i = 0; i < new_size; ++i) { | 100 | 86 | buf.read_binary(x); | 101 | 86 | data_set.insert(x); | 102 | 86 | } | 103 | 114 | read_var_int(max_size, buf); | 104 | 114 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 8 | void read(BufferReadable& buf) { | 96 | 8 | uint64_t new_size = 0; | 97 | 8 | buf.read_var_uint(new_size); | 98 | 8 | ElementType x; | 99 | 22 | for (size_t i = 0; i < new_size; ++i) { | 100 | 14 | buf.read_binary(x); | 101 | 14 | data_set.insert(x); | 102 | 14 | } | 103 | 8 | read_var_int(max_size, buf); | 104 | 8 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE4readERNS_14BufferReadableE 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 Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 1 | void read(BufferReadable& buf) { | 96 | 1 | uint64_t new_size = 0; | 97 | 1 | buf.read_var_uint(new_size); | 98 | 1 | ElementType x; | 99 | 1 | for (size_t i = 0; i < new_size; ++i) { | 100 | 0 | buf.read_binary(x); | 101 | 0 | data_set.insert(x); | 102 | 0 | } | 103 | 1 | read_var_int(max_size, buf); | 104 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 1 | void read(BufferReadable& buf) { | 96 | 1 | uint64_t new_size = 0; | 97 | 1 | buf.read_var_uint(new_size); | 98 | 1 | ElementType x; | 99 | 1 | for (size_t i = 0; i < new_size; ++i) { | 100 | 0 | buf.read_binary(x); | 101 | 0 | data_set.insert(x); | 102 | 0 | } | 103 | 1 | read_var_int(max_size, buf); | 104 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 8 | void read(BufferReadable& buf) { | 96 | 8 | uint64_t new_size = 0; | 97 | 8 | buf.read_var_uint(new_size); | 98 | 8 | ElementType x; | 99 | 25 | for (size_t i = 0; i < new_size; ++i) { | 100 | 17 | buf.read_binary(x); | 101 | 17 | data_set.insert(x); | 102 | 17 | } | 103 | 8 | read_var_int(max_size, buf); | 104 | 8 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 7 | void read(BufferReadable& buf) { | 96 | 7 | uint64_t new_size = 0; | 97 | 7 | buf.read_var_uint(new_size); | 98 | 7 | ElementType x; | 99 | 19 | for (size_t i = 0; i < new_size; ++i) { | 100 | 12 | buf.read_binary(x); | 101 | 12 | data_set.insert(x); | 102 | 12 | } | 103 | 7 | read_var_int(max_size, buf); | 104 | 7 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 2 | void read(BufferReadable& buf) { | 96 | 2 | uint64_t new_size = 0; | 97 | 2 | buf.read_var_uint(new_size); | 98 | 2 | ElementType x; | 99 | 32 | for (size_t i = 0; i < new_size; ++i) { | 100 | 30 | buf.read_binary(x); | 101 | 30 | data_set.insert(x); | 102 | 30 | } | 103 | 2 | read_var_int(max_size, buf); | 104 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 2 | void read(BufferReadable& buf) { | 96 | 2 | uint64_t new_size = 0; | 97 | 2 | buf.read_var_uint(new_size); | 98 | 2 | ElementType x; | 99 | 13 | for (size_t i = 0; i < new_size; ++i) { | 100 | 11 | buf.read_binary(x); | 101 | 11 | data_set.insert(x); | 102 | 11 | } | 103 | 2 | read_var_int(max_size, buf); | 104 | 2 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 1 | void read(BufferReadable& buf) { | 96 | 1 | uint64_t new_size = 0; | 97 | 1 | buf.read_var_uint(new_size); | 98 | 1 | ElementType x; | 99 | 1 | for (size_t i = 0; i < new_size; ++i) { | 100 | 0 | buf.read_binary(x); | 101 | 0 | data_set.insert(x); | 102 | 0 | } | 103 | 1 | read_var_int(max_size, buf); | 104 | 1 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 95 | 1 | void read(BufferReadable& buf) { | 96 | 1 | uint64_t new_size = 0; | 97 | 1 | buf.read_var_uint(new_size); | 98 | 1 | ElementType x; | 99 | 7 | for (size_t i = 0; i < new_size; ++i) { | 100 | 6 | buf.read_binary(x); | 101 | 6 | data_set.insert(x); | 102 | 6 | } | 103 | 1 | read_var_int(max_size, buf); | 104 | 1 | } |
Unexecuted instantiation: _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE4readERNS_14BufferReadableE 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 |
105 | | |
106 | 232 | void insert_result_into(IColumn& to) const { |
107 | 232 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); |
108 | 232 | vec.reserve(size()); |
109 | 340 | for (const auto& item : data_set) { |
110 | 340 | vec.push_back(item); |
111 | 340 | } |
112 | 232 | } Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 188 | void insert_result_into(IColumn& to) const { | 107 | 188 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 188 | vec.reserve(size()); | 109 | 188 | for (const auto& item : data_set) { | 110 | 180 | vec.push_back(item); | 111 | 180 | } | 112 | 188 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 6 | void insert_result_into(IColumn& to) const { | 107 | 6 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 6 | vec.reserve(size()); | 109 | 18 | for (const auto& item : data_set) { | 110 | 18 | vec.push_back(item); | 111 | 18 | } | 112 | 6 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE 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 Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EE18insert_result_intoERNS_7IColumnE 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 Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 2 | void insert_result_into(IColumn& to) const { | 107 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 2 | vec.reserve(size()); | 109 | 2 | for (const auto& item : data_set) { | 110 | 0 | vec.push_back(item); | 111 | 0 | } | 112 | 2 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 2 | void insert_result_into(IColumn& to) const { | 107 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 2 | vec.reserve(size()); | 109 | 2 | for (const auto& item : data_set) { | 110 | 0 | vec.push_back(item); | 111 | 0 | } | 112 | 2 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 14 | void insert_result_into(IColumn& to) const { | 107 | 14 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 14 | vec.reserve(size()); | 109 | 30 | for (const auto& item : data_set) { | 110 | 30 | vec.push_back(item); | 111 | 30 | } | 112 | 14 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 8 | void insert_result_into(IColumn& to) const { | 107 | 8 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 8 | vec.reserve(size()); | 109 | 18 | for (const auto& item : data_set) { | 110 | 18 | vec.push_back(item); | 111 | 18 | } | 112 | 8 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 4 | void insert_result_into(IColumn& to) const { | 107 | 4 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 4 | vec.reserve(size()); | 109 | 60 | for (const auto& item : data_set) { | 110 | 60 | vec.push_back(item); | 111 | 60 | } | 112 | 4 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 4 | void insert_result_into(IColumn& to) const { | 107 | 4 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 4 | vec.reserve(size()); | 109 | 22 | for (const auto& item : data_set) { | 110 | 22 | vec.push_back(item); | 111 | 22 | } | 112 | 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 | 106 | 2 | void insert_result_into(IColumn& to) const { | 107 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 2 | vec.reserve(size()); | 109 | 2 | for (const auto& item : data_set) { | 110 | 0 | vec.push_back(item); | 111 | 0 | } | 112 | 2 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 106 | 2 | void insert_result_into(IColumn& to) const { | 107 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 108 | 2 | vec.reserve(size()); | 109 | 12 | for (const auto& item : data_set) { | 110 | 12 | vec.push_back(item); | 111 | 12 | } | 112 | 2 | } |
Unexecuted instantiation: _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EE18insert_result_intoERNS_7IColumnE 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 |
113 | | |
114 | | void reset() { |
115 | | data_set.clear(); |
116 | | max_size = -1; |
117 | | } |
118 | | }; |
119 | | |
120 | | template <PrimitiveType T, bool HasLimit> |
121 | | requires(is_string_type(T)) |
122 | | struct AggregateFunctionCollectSetData<T, HasLimit> { |
123 | | static constexpr PrimitiveType PType = T; |
124 | | using ElementType = StringRef; |
125 | | using ColVecType = ColumnString; |
126 | | using SelfType = AggregateFunctionCollectSetData<T, HasLimit>; |
127 | | using Set = doris::flat_hash_set<ElementType>; |
128 | | Set data_set; |
129 | | Int64 max_size = -1; |
130 | | |
131 | 512 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {}_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 131 | 487 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 131 | 25 | AggregateFunctionCollectSetData(const DataTypes& argument_types) {} |
|
132 | | |
133 | 1.00k | size_t size() const { return data_set.size(); }_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 133 | 978 | size_t size() const { return data_set.size(); } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 133 | 30 | size_t size() const { return data_set.size(); } |
|
134 | | |
135 | 281 | void add(const IColumn& column, size_t row_num, Arena& arena) { |
136 | 281 | auto key = column.get_data_at(row_num); |
137 | 281 | key.data = arena.insert(key.data, key.size); |
138 | 281 | data_set.insert(key); |
139 | 281 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 135 | 251 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 136 | 251 | auto key = column.get_data_at(row_num); | 137 | 251 | key.data = arena.insert(key.data, key.size); | 138 | 251 | data_set.insert(key); | 139 | 251 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEmRNS_5ArenaE Line | Count | Source | 135 | 30 | void add(const IColumn& column, size_t row_num, Arena& arena) { | 136 | 30 | auto key = column.get_data_at(row_num); | 137 | 30 | key.data = arena.insert(key.data, key.size); | 138 | 30 | data_set.insert(key); | 139 | 30 | } |
|
140 | | |
141 | 100 | void merge(const SelfType& rhs, Arena& arena) { |
142 | 100 | if (max_size == -1) { |
143 | 22 | max_size = rhs.max_size; |
144 | 22 | } |
145 | | |
146 | 107 | for (const auto& rhs_elem : rhs.data_set) { |
147 | 107 | if constexpr (HasLimit) { |
148 | 92 | if (size() >= max_size) { |
149 | 10 | return; |
150 | 10 | } |
151 | 92 | } |
152 | 82 | StringRef key = rhs_elem; |
153 | 107 | key.data = arena.insert(key.data, key.size); |
154 | 107 | data_set.insert(key); |
155 | 107 | } |
156 | 100 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 141 | 92 | void merge(const SelfType& rhs, Arena& arena) { | 142 | 92 | if (max_size == -1) { | 143 | 14 | max_size = rhs.max_size; | 144 | 14 | } | 145 | | | 146 | 92 | for (const auto& rhs_elem : rhs.data_set) { | 147 | 92 | if constexpr (HasLimit) { | 148 | 92 | if (size() >= max_size) { | 149 | 10 | return; | 150 | 10 | } | 151 | 92 | } | 152 | 82 | StringRef key = rhs_elem; | 153 | 92 | key.data = arena.insert(key.data, key.size); | 154 | 92 | data_set.insert(key); | 155 | 92 | } | 156 | 92 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_RNS_5ArenaE Line | Count | Source | 141 | 8 | void merge(const SelfType& rhs, Arena& arena) { | 142 | 8 | if (max_size == -1) { | 143 | 8 | max_size = rhs.max_size; | 144 | 8 | } | 145 | | | 146 | 15 | for (const auto& rhs_elem : rhs.data_set) { | 147 | | if constexpr (HasLimit) { | 148 | | if (size() >= max_size) { | 149 | | return; | 150 | | } | 151 | | } | 152 | 15 | StringRef key = rhs_elem; | 153 | 15 | key.data = arena.insert(key.data, key.size); | 154 | 15 | data_set.insert(key); | 155 | 15 | } | 156 | 8 | } |
|
157 | | |
158 | 106 | void write(BufferWritable& buf) const { |
159 | 106 | buf.write_var_uint(size()); |
160 | 106 | for (const auto& elem : data_set) { |
161 | 81 | buf.write_binary(elem); |
162 | 81 | } |
163 | 106 | write_var_int(max_size, buf); |
164 | 106 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 158 | 90 | void write(BufferWritable& buf) const { | 159 | 90 | buf.write_var_uint(size()); | 160 | 90 | for (const auto& elem : data_set) { | 161 | 62 | buf.write_binary(elem); | 162 | 62 | } | 163 | 90 | write_var_int(max_size, buf); | 164 | 90 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 158 | 16 | void write(BufferWritable& buf) const { | 159 | 16 | buf.write_var_uint(size()); | 160 | 19 | for (const auto& elem : data_set) { | 161 | 19 | buf.write_binary(elem); | 162 | 19 | } | 163 | 16 | write_var_int(max_size, buf); | 164 | 16 | } |
|
165 | | |
166 | 122 | void read(BufferReadable& buf) { |
167 | 122 | UInt64 size; |
168 | 122 | buf.read_var_uint(size); |
169 | 122 | StringRef ref; |
170 | 223 | for (size_t i = 0; i < size; ++i) { |
171 | 101 | buf.read_binary(ref); |
172 | 101 | data_set.insert(ref); |
173 | 101 | } |
174 | 122 | read_var_int(max_size, buf); |
175 | 122 | } _ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 166 | 114 | void read(BufferReadable& buf) { | 167 | 114 | UInt64 size; | 168 | 114 | buf.read_var_uint(size); | 169 | 114 | StringRef ref; | 170 | 200 | for (size_t i = 0; i < size; ++i) { | 171 | 86 | buf.read_binary(ref); | 172 | 86 | data_set.insert(ref); | 173 | 86 | } | 174 | 114 | read_var_int(max_size, buf); | 175 | 114 | } |
_ZN5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 166 | 8 | void read(BufferReadable& buf) { | 167 | 8 | UInt64 size; | 168 | 8 | buf.read_var_uint(size); | 169 | 8 | StringRef ref; | 170 | 23 | for (size_t i = 0; i < size; ++i) { | 171 | 15 | buf.read_binary(ref); | 172 | 15 | data_set.insert(ref); | 173 | 15 | } | 174 | 8 | read_var_int(max_size, buf); | 175 | 8 | } |
|
176 | | |
177 | 202 | void insert_result_into(IColumn& to) const { |
178 | 202 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); |
179 | 202 | vec.reserve(size()); |
180 | 204 | for (const auto& item : data_set) { |
181 | 204 | vec.insert_data(item.data, item.size); |
182 | 204 | } |
183 | 202 | } _ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 177 | 188 | void insert_result_into(IColumn& to) const { | 178 | 188 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); | 179 | 188 | vec.reserve(size()); | 180 | 188 | for (const auto& item : data_set) { | 181 | 180 | vec.insert_data(item.data, item.size); | 182 | 180 | } | 183 | 188 | } |
_ZNK5doris31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 177 | 14 | void insert_result_into(IColumn& to) const { | 178 | 14 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); | 179 | 14 | vec.reserve(size()); | 180 | 24 | for (const auto& item : data_set) { | 181 | 24 | vec.insert_data(item.data, item.size); | 182 | 24 | } | 183 | 14 | } |
|
184 | | |
185 | | void reset() { |
186 | | data_set.clear(); |
187 | | max_size = -1; |
188 | | } |
189 | | }; |
190 | | |
191 | | template <PrimitiveType T, bool HasLimit> |
192 | | struct AggregateFunctionCollectListData { |
193 | | static constexpr PrimitiveType PType = T; |
194 | | using ElementType = typename PrimitiveTypeTraits<T>::CppType; |
195 | | using ColVecType = typename PrimitiveTypeTraits<T>::ColumnType; |
196 | | using SelfType = AggregateFunctionCollectListData<T, HasLimit>; |
197 | | PaddedPODArray<ElementType> data; |
198 | | Int64 max_size = -1; |
199 | | |
200 | 616 | AggregateFunctionCollectListData(const DataTypes& argument_types) {}Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 2 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 2 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 28 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 64 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 4 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 4 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 2 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 2 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 487 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 200 | 21 | AggregateFunctionCollectListData(const DataTypes& argument_types) {} |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE 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 |
201 | | |
202 | 1.55k | size_t size() const { return data.size(); }Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4sizeEv Line | Count | Source | 202 | 6 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4sizeEv Line | Count | Source | 202 | 6 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4sizeEv Line | Count | Source | 202 | 78 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4sizeEv Line | Count | Source | 202 | 90 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4sizeEv Line | Count | Source | 202 | 12 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4sizeEv Line | Count | Source | 202 | 12 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4sizeEv Line | Count | Source | 202 | 6 | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4sizeEv Line | Count | Source | 202 | 6 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4sizeEv Line | Count | Source | 202 | 1.25k | size_t size() const { return data.size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4sizeEv Line | Count | Source | 202 | 83 | size_t size() const { return data.size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4sizeEv Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4sizeEv |
203 | | |
204 | 33.2k | void add(const IColumn& column, size_t row_num) { |
205 | 33.2k | const auto& vec = |
206 | 33.2k | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); |
207 | 33.2k | data.push_back(vec[row_num]); |
208 | 33.2k | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 37 | void add(const IColumn& column, size_t row_num) { | 205 | 37 | const auto& vec = | 206 | 37 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 37 | data.push_back(vec[row_num]); | 208 | 37 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 32.8k | void add(const IColumn& column, size_t row_num) { | 205 | 32.8k | const auto& vec = | 206 | 32.8k | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 32.8k | data.push_back(vec[row_num]); | 208 | 32.8k | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 80 | void add(const IColumn& column, size_t row_num) { | 205 | 80 | const auto& vec = | 206 | 80 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 80 | data.push_back(vec[row_num]); | 208 | 80 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 40 | void add(const IColumn& column, size_t row_num) { | 205 | 40 | const auto& vec = | 206 | 40 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 40 | data.push_back(vec[row_num]); | 208 | 40 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 20 | void add(const IColumn& column, size_t row_num) { | 205 | 20 | const auto& vec = | 206 | 20 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 20 | data.push_back(vec[row_num]); | 208 | 20 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE3addERKNS_7IColumnEm _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 251 | void add(const IColumn& column, size_t row_num) { | 205 | 251 | const auto& vec = | 206 | 251 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 251 | data.push_back(vec[row_num]); | 208 | 251 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 204 | 22 | void add(const IColumn& column, size_t row_num) { | 205 | 22 | const auto& vec = | 206 | 22 | assert_cast<const ColVecType&, TypeCheckOnRelease::DISABLE>(column).get_data(); | 207 | 22 | data.push_back(vec[row_num]); | 208 | 22 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE3addERKNS_7IColumnEm 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 Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE3addERKNS_7IColumnEm Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE3addERKNS_7IColumnEm |
209 | | |
210 | 136 | void merge(const SelfType& rhs) { |
211 | 136 | if constexpr (HasLimit) { |
212 | 99 | if (max_size == -1) { |
213 | 14 | max_size = rhs.max_size; |
214 | 14 | } |
215 | 105 | for (auto& rhs_elem : rhs.data) { |
216 | 105 | if (size() >= max_size) { |
217 | 11 | return; |
218 | 11 | } |
219 | 94 | data.push_back(rhs_elem); |
220 | 94 | } |
221 | 99 | } else { |
222 | 37 | data.insert(rhs.data.begin(), rhs.data.end()); |
223 | 37 | } |
224 | 136 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 1 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 1 | } else { | 222 | 1 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 1 | } | 224 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 1 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 1 | } else { | 222 | 1 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 1 | } | 224 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 8 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 8 | } else { | 222 | 8 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 8 | } | 224 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 21 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 21 | } else { | 222 | 21 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 21 | } | 224 | 21 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 2 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 2 | } else { | 222 | 2 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 2 | } | 224 | 2 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 2 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 2 | } else { | 222 | 2 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 2 | } | 224 | 2 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 1 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 1 | } else { | 222 | 1 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 1 | } | 224 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5mergeERKS2_ Line | Count | Source | 210 | 1 | void merge(const SelfType& rhs) { | 211 | | if constexpr (HasLimit) { | 212 | | if (max_size == -1) { | 213 | | max_size = rhs.max_size; | 214 | | } | 215 | | for (auto& rhs_elem : rhs.data) { | 216 | | if (size() >= max_size) { | 217 | | return; | 218 | | } | 219 | | data.push_back(rhs_elem); | 220 | | } | 221 | 1 | } else { | 222 | 1 | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | 1 | } | 224 | 1 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5mergeERKS2_ Line | Count | Source | 210 | 92 | void merge(const SelfType& rhs) { | 211 | 92 | if constexpr (HasLimit) { | 212 | 92 | if (max_size == -1) { | 213 | 14 | max_size = rhs.max_size; | 214 | 14 | } | 215 | 92 | for (auto& rhs_elem : rhs.data) { | 216 | 92 | if (size() >= max_size) { | 217 | 10 | return; | 218 | 10 | } | 219 | 82 | data.push_back(rhs_elem); | 220 | 82 | } | 221 | | } else { | 222 | | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | | } | 224 | 92 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5mergeERKS2_ Line | Count | Source | 210 | 7 | void merge(const SelfType& rhs) { | 211 | 7 | if constexpr (HasLimit) { | 212 | 7 | if (max_size == -1) { | 213 | 0 | max_size = rhs.max_size; | 214 | 0 | } | 215 | 13 | for (auto& rhs_elem : rhs.data) { | 216 | 13 | if (size() >= max_size) { | 217 | 1 | return; | 218 | 1 | } | 219 | 12 | data.push_back(rhs_elem); | 220 | 12 | } | 221 | | } else { | 222 | | data.insert(rhs.data.begin(), rhs.data.end()); | 223 | | } | 224 | 7 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5mergeERKS2_ Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5mergeERKS2_ |
225 | | |
226 | 149 | void write(BufferWritable& buf) const { |
227 | 149 | buf.write_var_uint(size()); |
228 | 149 | buf.write(data.raw_data(), size() * sizeof(ElementType)); |
229 | 149 | write_var_int(max_size, buf); |
230 | 149 | } Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 1 | void write(BufferWritable& buf) const { | 227 | 1 | buf.write_var_uint(size()); | 228 | 1 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 1 | write_var_int(max_size, buf); | 230 | 1 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 1 | void write(BufferWritable& buf) const { | 227 | 1 | buf.write_var_uint(size()); | 228 | 1 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 1 | write_var_int(max_size, buf); | 230 | 1 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 20 | void write(BufferWritable& buf) const { | 227 | 20 | buf.write_var_uint(size()); | 228 | 20 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 20 | write_var_int(max_size, buf); | 230 | 20 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 23 | void write(BufferWritable& buf) const { | 227 | 23 | buf.write_var_uint(size()); | 228 | 23 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 23 | write_var_int(max_size, buf); | 230 | 23 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 2 | void write(BufferWritable& buf) const { | 227 | 2 | buf.write_var_uint(size()); | 228 | 2 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 2 | write_var_int(max_size, buf); | 230 | 2 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 2 | void write(BufferWritable& buf) const { | 227 | 2 | buf.write_var_uint(size()); | 228 | 2 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 2 | write_var_int(max_size, buf); | 230 | 2 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 1 | void write(BufferWritable& buf) const { | 227 | 1 | buf.write_var_uint(size()); | 228 | 1 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 1 | write_var_int(max_size, buf); | 230 | 1 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 1 | void write(BufferWritable& buf) const { | 227 | 1 | buf.write_var_uint(size()); | 228 | 1 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 1 | write_var_int(max_size, buf); | 230 | 1 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 90 | void write(BufferWritable& buf) const { | 227 | 90 | buf.write_var_uint(size()); | 228 | 90 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 90 | write_var_int(max_size, buf); | 230 | 90 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 226 | 8 | void write(BufferWritable& buf) const { | 227 | 8 | buf.write_var_uint(size()); | 228 | 8 | buf.write(data.raw_data(), size() * sizeof(ElementType)); | 229 | 8 | write_var_int(max_size, buf); | 230 | 8 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE5writeERNS_14BufferWritableE 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 Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE5writeERNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE5writeERNS_14BufferWritableE |
231 | | |
232 | 158 | void read(BufferReadable& buf) { |
233 | 158 | UInt64 rows = 0; |
234 | 158 | buf.read_var_uint(rows); |
235 | 158 | data.resize(rows); |
236 | 158 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); |
237 | 158 | read_var_int(max_size, buf); |
238 | 158 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 1 | void read(BufferReadable& buf) { | 233 | 1 | UInt64 rows = 0; | 234 | 1 | buf.read_var_uint(rows); | 235 | 1 | data.resize(rows); | 236 | 1 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 1 | read_var_int(max_size, buf); | 238 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 1 | void read(BufferReadable& buf) { | 233 | 1 | UInt64 rows = 0; | 234 | 1 | buf.read_var_uint(rows); | 235 | 1 | data.resize(rows); | 236 | 1 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 1 | read_var_int(max_size, buf); | 238 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 8 | void read(BufferReadable& buf) { | 233 | 8 | UInt64 rows = 0; | 234 | 8 | buf.read_var_uint(rows); | 235 | 8 | data.resize(rows); | 236 | 8 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 8 | read_var_int(max_size, buf); | 238 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 21 | void read(BufferReadable& buf) { | 233 | 21 | UInt64 rows = 0; | 234 | 21 | buf.read_var_uint(rows); | 235 | 21 | data.resize(rows); | 236 | 21 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 21 | read_var_int(max_size, buf); | 238 | 21 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 2 | void read(BufferReadable& buf) { | 233 | 2 | UInt64 rows = 0; | 234 | 2 | buf.read_var_uint(rows); | 235 | 2 | data.resize(rows); | 236 | 2 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 2 | read_var_int(max_size, buf); | 238 | 2 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 2 | void read(BufferReadable& buf) { | 233 | 2 | UInt64 rows = 0; | 234 | 2 | buf.read_var_uint(rows); | 235 | 2 | data.resize(rows); | 236 | 2 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 2 | read_var_int(max_size, buf); | 238 | 2 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 1 | void read(BufferReadable& buf) { | 233 | 1 | UInt64 rows = 0; | 234 | 1 | buf.read_var_uint(rows); | 235 | 1 | data.resize(rows); | 236 | 1 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 1 | read_var_int(max_size, buf); | 238 | 1 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 1 | void read(BufferReadable& buf) { | 233 | 1 | UInt64 rows = 0; | 234 | 1 | buf.read_var_uint(rows); | 235 | 1 | data.resize(rows); | 236 | 1 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 1 | read_var_int(max_size, buf); | 238 | 1 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 114 | void read(BufferReadable& buf) { | 233 | 114 | UInt64 rows = 0; | 234 | 114 | buf.read_var_uint(rows); | 235 | 114 | data.resize(rows); | 236 | 114 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 114 | read_var_int(max_size, buf); | 238 | 114 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 232 | 7 | void read(BufferReadable& buf) { | 233 | 7 | UInt64 rows = 0; | 234 | 7 | buf.read_var_uint(rows); | 235 | 7 | data.resize(rows); | 236 | 7 | buf.read(reinterpret_cast<char*>(data.data()), rows * sizeof(ElementType)); | 237 | 7 | read_var_int(max_size, buf); | 238 | 7 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE4readERNS_14BufferReadableE 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 Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EE4readERNS_14BufferReadableE Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EE4readERNS_14BufferReadableE |
239 | | |
240 | | void reset() { |
241 | | data.clear(); |
242 | | max_size = -1; |
243 | | } |
244 | | |
245 | 251 | void insert_result_into(IColumn& to) const { |
246 | 251 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); |
247 | 251 | size_t old_size = vec.size(); |
248 | 251 | vec.resize(old_size + size()); |
249 | 251 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); |
250 | 251 | } Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 2 | void insert_result_into(IColumn& to) const { | 246 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 2 | size_t old_size = vec.size(); | 248 | 2 | vec.resize(old_size + size()); | 249 | 2 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 2 | void insert_result_into(IColumn& to) const { | 246 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 2 | size_t old_size = vec.size(); | 248 | 2 | vec.resize(old_size + size()); | 249 | 2 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 19 | void insert_result_into(IColumn& to) const { | 246 | 19 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 19 | size_t old_size = vec.size(); | 248 | 19 | vec.resize(old_size + size()); | 249 | 19 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 19 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 22 | void insert_result_into(IColumn& to) const { | 246 | 22 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 22 | size_t old_size = vec.size(); | 248 | 22 | vec.resize(old_size + size()); | 249 | 22 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 22 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 4 | void insert_result_into(IColumn& to) const { | 246 | 4 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 4 | size_t old_size = vec.size(); | 248 | 4 | vec.resize(old_size + size()); | 249 | 4 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 4 | void insert_result_into(IColumn& to) const { | 246 | 4 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 4 | size_t old_size = vec.size(); | 248 | 4 | vec.resize(old_size + size()); | 249 | 4 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 4 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 2 | void insert_result_into(IColumn& to) const { | 246 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 2 | size_t old_size = vec.size(); | 248 | 2 | vec.resize(old_size + size()); | 249 | 2 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 2 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 2 | void insert_result_into(IColumn& to) const { | 246 | 2 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 2 | size_t old_size = vec.size(); | 248 | 2 | vec.resize(old_size + size()); | 249 | 2 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 2 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EE18insert_result_intoERNS_7IColumnE 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 Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EE18insert_result_intoERNS_7IColumnE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 188 | void insert_result_into(IColumn& to) const { | 246 | 188 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 188 | size_t old_size = vec.size(); | 248 | 188 | vec.resize(old_size + size()); | 249 | 188 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 188 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 245 | 6 | void insert_result_into(IColumn& to) const { | 246 | 6 | auto& vec = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to).get_data(); | 247 | 6 | size_t old_size = vec.size(); | 248 | 6 | vec.resize(old_size + size()); | 249 | 6 | std::memcpy(vec.data() + old_size, data.data(), size() * sizeof(ElementType)); | 250 | 6 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EE18insert_result_intoERNS_7IColumnE 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 Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EE18insert_result_intoERNS_7IColumnE Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EE18insert_result_intoERNS_7IColumnE 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 |
251 | | }; |
252 | | |
253 | | template <PrimitiveType T, bool HasLimit> |
254 | | requires(is_string_type(T)) |
255 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
256 | | static constexpr PrimitiveType PType = T; |
257 | | using ElementType = StringRef; |
258 | | using ColVecType = ColumnString; |
259 | | MutableColumnPtr data; |
260 | | Int64 max_size = -1; |
261 | | |
262 | 513 | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
263 | 513 | data = ColVecType::create(); |
264 | 513 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 262 | 26 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 263 | 26 | data = ColVecType::create(); | 264 | 26 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 262 | 487 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 263 | 487 | data = ColVecType::create(); | 264 | 487 | } |
|
265 | | |
266 | 1.00k | size_t size() const { return data->size(); }_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4sizeEv Line | Count | Source | 266 | 24 | size_t size() const { return data->size(); } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4sizeEv Line | Count | Source | 266 | 980 | size_t size() const { return data->size(); } |
|
267 | | |
268 | 297 | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); }_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE3addERKNS_7IColumnEm Line | Count | Source | 268 | 46 | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE3addERKNS_7IColumnEm Line | Count | Source | 268 | 251 | void add(const IColumn& column, size_t row_num) { data->insert_from(column, row_num); } |
|
269 | | |
270 | 100 | void merge(const AggregateFunctionCollectListData& rhs) { |
271 | 100 | if constexpr (HasLimit) { |
272 | 92 | if (max_size == -1) { |
273 | 14 | max_size = rhs.max_size; |
274 | 14 | } |
275 | | |
276 | 92 | data->insert_range_from(*rhs.data, 0, |
277 | 92 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); |
278 | 92 | } else { |
279 | 8 | data->insert_range_from(*rhs.data, 0, rhs.size()); |
280 | 8 | } |
281 | 100 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5mergeERKS2_ Line | Count | Source | 270 | 8 | void merge(const AggregateFunctionCollectListData& rhs) { | 271 | | if constexpr (HasLimit) { | 272 | | if (max_size == -1) { | 273 | | max_size = rhs.max_size; | 274 | | } | 275 | | | 276 | | data->insert_range_from(*rhs.data, 0, | 277 | | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 278 | 8 | } else { | 279 | 8 | data->insert_range_from(*rhs.data, 0, rhs.size()); | 280 | 8 | } | 281 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5mergeERKS2_ Line | Count | Source | 270 | 92 | void merge(const AggregateFunctionCollectListData& rhs) { | 271 | 92 | if constexpr (HasLimit) { | 272 | 92 | if (max_size == -1) { | 273 | 14 | max_size = rhs.max_size; | 274 | 14 | } | 275 | | | 276 | 92 | data->insert_range_from(*rhs.data, 0, | 277 | 92 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 278 | | } else { | 279 | | data->insert_range_from(*rhs.data, 0, rhs.size()); | 280 | | } | 281 | 92 | } |
|
282 | | |
283 | 110 | void write(BufferWritable& buf) const { |
284 | 110 | auto& col = assert_cast<ColVecType&>(*data); |
285 | | |
286 | 110 | buf.write_var_uint(col.size()); |
287 | 110 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); |
288 | | |
289 | 110 | buf.write_var_uint(col.get_chars().size()); |
290 | 110 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); |
291 | 110 | write_var_int(max_size, buf); |
292 | 110 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 283 | 20 | void write(BufferWritable& buf) const { | 284 | 20 | auto& col = assert_cast<ColVecType&>(*data); | 285 | | | 286 | 20 | buf.write_var_uint(col.size()); | 287 | 20 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 288 | | | 289 | 20 | buf.write_var_uint(col.get_chars().size()); | 290 | 20 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 291 | 20 | write_var_int(max_size, buf); | 292 | 20 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 283 | 90 | void write(BufferWritable& buf) const { | 284 | 90 | auto& col = assert_cast<ColVecType&>(*data); | 285 | | | 286 | 90 | buf.write_var_uint(col.size()); | 287 | 90 | buf.write(col.get_offsets().raw_data(), col.size() * sizeof(IColumn::Offset)); | 288 | | | 289 | 90 | buf.write_var_uint(col.get_chars().size()); | 290 | 90 | buf.write(col.get_chars().raw_data(), col.get_chars().size()); | 291 | 90 | write_var_int(max_size, buf); | 292 | 90 | } |
|
293 | | |
294 | 122 | void read(BufferReadable& buf) { |
295 | 122 | auto& col = assert_cast<ColVecType&>(*data); |
296 | 122 | UInt64 offs_size = 0; |
297 | 122 | buf.read_var_uint(offs_size); |
298 | 122 | col.get_offsets().resize(offs_size); |
299 | 122 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), |
300 | 122 | offs_size * sizeof(IColumn::Offset)); |
301 | | |
302 | 122 | UInt64 chars_size = 0; |
303 | 122 | buf.read_var_uint(chars_size); |
304 | 122 | col.get_chars().resize(chars_size); |
305 | 122 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); |
306 | 122 | read_var_int(max_size, buf); |
307 | 122 | } _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 294 | 8 | void read(BufferReadable& buf) { | 295 | 8 | auto& col = assert_cast<ColVecType&>(*data); | 296 | 8 | UInt64 offs_size = 0; | 297 | 8 | buf.read_var_uint(offs_size); | 298 | 8 | col.get_offsets().resize(offs_size); | 299 | 8 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 300 | 8 | offs_size * sizeof(IColumn::Offset)); | 301 | | | 302 | 8 | UInt64 chars_size = 0; | 303 | 8 | buf.read_var_uint(chars_size); | 304 | 8 | col.get_chars().resize(chars_size); | 305 | 8 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 306 | 8 | read_var_int(max_size, buf); | 307 | 8 | } |
_ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 294 | 114 | void read(BufferReadable& buf) { | 295 | 114 | auto& col = assert_cast<ColVecType&>(*data); | 296 | 114 | UInt64 offs_size = 0; | 297 | 114 | buf.read_var_uint(offs_size); | 298 | 114 | col.get_offsets().resize(offs_size); | 299 | 114 | buf.read(reinterpret_cast<char*>(col.get_offsets().data()), | 300 | 114 | offs_size * sizeof(IColumn::Offset)); | 301 | | | 302 | 114 | UInt64 chars_size = 0; | 303 | 114 | buf.read_var_uint(chars_size); | 304 | 114 | col.get_chars().resize(chars_size); | 305 | 114 | buf.read(reinterpret_cast<char*>(col.get_chars().data()), chars_size); | 306 | 114 | read_var_int(max_size, buf); | 307 | 114 | } |
|
308 | | |
309 | | void reset() { |
310 | | data->clear(); |
311 | | max_size = -1; |
312 | | } |
313 | | |
314 | 204 | void insert_result_into(IColumn& to) const { |
315 | 204 | auto& to_str = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); |
316 | 204 | to_str.insert_range_from(*data, 0, size()); |
317 | 204 | } _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 314 | 16 | void insert_result_into(IColumn& to) const { | 315 | 16 | auto& to_str = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); | 316 | 16 | to_str.insert_range_from(*data, 0, size()); | 317 | 16 | } |
_ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EE18insert_result_intoERNS_7IColumnE Line | Count | Source | 314 | 188 | void insert_result_into(IColumn& to) const { | 315 | 188 | auto& to_str = assert_cast<ColVecType&, TypeCheckOnRelease::DISABLE>(to); | 316 | 188 | to_str.insert_range_from(*data, 0, size()); | 317 | 188 | } |
|
318 | | }; |
319 | | |
320 | | template <PrimitiveType T, bool HasLimit> |
321 | | requires(!is_string_type(T) && !is_int_or_bool(T) && !is_float_or_double(T) && !is_decimal(T) && |
322 | | !is_date_type(T) && !is_timestamp_ns_type(T) && !is_ip(T) && !is_timestamptz_type(T)) |
323 | | struct AggregateFunctionCollectListData<T, HasLimit> { |
324 | | static constexpr PrimitiveType PType = T; |
325 | | using ElementType = StringRef; |
326 | | using Self = AggregateFunctionCollectListData<T, HasLimit>; |
327 | | DataTypeSerDeSPtr serde; // for complex serialize && deserialize from multi BE |
328 | | MutableColumnPtr column_data; |
329 | | Int64 max_size = -1; |
330 | | |
331 | 370 | AggregateFunctionCollectListData(const DataTypes& argument_types) { |
332 | 370 | DataTypePtr column_type = argument_types[0]; |
333 | 370 | column_data = column_type->create_column(); |
334 | 370 | serde = column_type->get_serde(); |
335 | 370 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 331 | 33 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 332 | 33 | DataTypePtr column_type = argument_types[0]; | 333 | 33 | column_data = column_type->create_column(); | 334 | 33 | serde = column_type->get_serde(); | 335 | 33 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS7_EE Line | Count | Source | 331 | 337 | AggregateFunctionCollectListData(const DataTypes& argument_types) { | 332 | 337 | DataTypePtr column_type = argument_types[0]; | 333 | 337 | column_data = column_type->create_column(); | 334 | 337 | serde = column_type->get_serde(); | 335 | 337 | } |
|
336 | | |
337 | 717 | size_t size() const { return column_data->size(); }Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4sizeEv Line | Count | Source | 337 | 36 | size_t size() const { return column_data->size(); } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4sizeEv _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4sizeEv Line | Count | Source | 337 | 681 | size_t size() const { return column_data->size(); } |
|
338 | | |
339 | 347 | 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 | 339 | 174 | 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 | 339 | 173 | void add(const IColumn& column, size_t row_num) { column_data->insert_from(column, row_num); } |
|
340 | | |
341 | 75 | void merge(const AggregateFunctionCollectListData& rhs) { |
342 | 75 | if constexpr (HasLimit) { |
343 | 63 | if (max_size == -1) { |
344 | 14 | max_size = rhs.max_size; |
345 | 14 | } |
346 | | |
347 | 63 | column_data->insert_range_from( |
348 | 63 | *rhs.column_data, 0, |
349 | 63 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); |
350 | 63 | } else { |
351 | 12 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); |
352 | 12 | } |
353 | 75 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5mergeERKS2_ Line | Count | Source | 341 | 12 | void merge(const AggregateFunctionCollectListData& rhs) { | 342 | | if constexpr (HasLimit) { | 343 | | if (max_size == -1) { | 344 | | max_size = rhs.max_size; | 345 | | } | 346 | | | 347 | | column_data->insert_range_from( | 348 | | *rhs.column_data, 0, | 349 | | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 350 | 12 | } else { | 351 | 12 | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); | 352 | 12 | } | 353 | 12 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5mergeERKS2_ _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5mergeERKS2_ Line | Count | Source | 341 | 63 | void merge(const AggregateFunctionCollectListData& rhs) { | 342 | 63 | if constexpr (HasLimit) { | 343 | 63 | if (max_size == -1) { | 344 | 14 | max_size = rhs.max_size; | 345 | 14 | } | 346 | | | 347 | 63 | column_data->insert_range_from( | 348 | 63 | *rhs.column_data, 0, | 349 | 63 | std::min(static_cast<size_t>(max_size - size()), rhs.size())); | 350 | | } else { | 351 | | column_data->insert_range_from(*rhs.column_data, 0, rhs.size()); | 352 | | } | 353 | 63 | } |
|
354 | | |
355 | 86 | void write(BufferWritable& buf) const { |
356 | 86 | const size_t size = column_data->size(); |
357 | 86 | buf.write_binary(size); |
358 | | |
359 | 86 | DataTypeSerDe::FormatOptions opt; |
360 | 86 | auto timezone = cctz::utc_time_zone(); |
361 | 86 | opt.timezone = &timezone; |
362 | | // TODO: Refactor this aggregate state serialization to avoid |
363 | | // round-tripping through a human-readable string format. |
364 | 86 | auto tmp_str = ColumnString::create(); |
365 | 86 | VectorBufferWriter tmp_buf(*tmp_str.get()); |
366 | | |
367 | 224 | for (size_t i = 0; i < size; i++) { |
368 | 138 | tmp_str->clear(); |
369 | 138 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { |
370 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
371 | 0 | "Failed to serialize data for " + column_data->get_name() + |
372 | 0 | " error: " + st.to_string()); |
373 | 0 | } |
374 | 138 | tmp_buf.commit(); |
375 | 138 | buf.write_binary(tmp_str->get_data_at(0)); |
376 | 138 | } |
377 | | |
378 | 86 | write_var_int(max_size, buf); |
379 | 86 | } Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE5writeERNS_14BufferWritableE Line | Count | Source | 355 | 24 | void write(BufferWritable& buf) const { | 356 | 24 | const size_t size = column_data->size(); | 357 | 24 | buf.write_binary(size); | 358 | | | 359 | 24 | DataTypeSerDe::FormatOptions opt; | 360 | 24 | auto timezone = cctz::utc_time_zone(); | 361 | 24 | opt.timezone = &timezone; | 362 | | // TODO: Refactor this aggregate state serialization to avoid | 363 | | // round-tripping through a human-readable string format. | 364 | 24 | auto tmp_str = ColumnString::create(); | 365 | 24 | VectorBufferWriter tmp_buf(*tmp_str.get()); | 366 | | | 367 | 120 | for (size_t i = 0; i < size; i++) { | 368 | 96 | tmp_str->clear(); | 369 | 96 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { | 370 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 371 | 0 | "Failed to serialize data for " + column_data->get_name() + | 372 | 0 | " error: " + st.to_string()); | 373 | 0 | } | 374 | 96 | tmp_buf.commit(); | 375 | 96 | buf.write_binary(tmp_str->get_data_at(0)); | 376 | 96 | } | 377 | | | 378 | 24 | write_var_int(max_size, buf); | 379 | 24 | } |
Unexecuted instantiation: _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE5writeERNS_14BufferWritableE _ZNK5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE5writeERNS_14BufferWritableE Line | Count | Source | 355 | 62 | void write(BufferWritable& buf) const { | 356 | 62 | const size_t size = column_data->size(); | 357 | 62 | buf.write_binary(size); | 358 | | | 359 | 62 | DataTypeSerDe::FormatOptions opt; | 360 | 62 | auto timezone = cctz::utc_time_zone(); | 361 | 62 | opt.timezone = &timezone; | 362 | | // TODO: Refactor this aggregate state serialization to avoid | 363 | | // round-tripping through a human-readable string format. | 364 | 62 | auto tmp_str = ColumnString::create(); | 365 | 62 | VectorBufferWriter tmp_buf(*tmp_str.get()); | 366 | | | 367 | 104 | for (size_t i = 0; i < size; i++) { | 368 | 42 | tmp_str->clear(); | 369 | 42 | if (Status st = serde->serialize_one_cell_to_json(*column_data, i, tmp_buf, opt); !st) { | 370 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 371 | 0 | "Failed to serialize data for " + column_data->get_name() + | 372 | 0 | " error: " + st.to_string()); | 373 | 0 | } | 374 | 42 | tmp_buf.commit(); | 375 | 42 | buf.write_binary(tmp_str->get_data_at(0)); | 376 | 42 | } | 377 | | | 378 | 62 | write_var_int(max_size, buf); | 379 | 62 | } |
|
380 | | |
381 | 90 | void read(BufferReadable& buf) { |
382 | 90 | size_t size = 0; |
383 | 90 | buf.read_binary(size); |
384 | 90 | column_data->clear(); |
385 | 90 | column_data->reserve(size); |
386 | | |
387 | 90 | StringRef s; |
388 | 90 | DataTypeSerDe::FormatOptions opt; |
389 | 90 | auto timezone = cctz::utc_time_zone(); |
390 | 90 | opt.timezone = &timezone; |
391 | 238 | for (size_t i = 0; i < size; i++) { |
392 | 148 | buf.read_binary(s); |
393 | 148 | Slice slice(s.data, s.size); |
394 | 148 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { |
395 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
396 | 0 | "Failed to deserialize data for " + column_data->get_name() + |
397 | 0 | " error: " + st.to_string()); |
398 | 0 | } |
399 | 148 | } |
400 | 90 | read_var_int(max_size, buf); |
401 | 90 | } Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EE4readERNS_14BufferReadableE Line | Count | Source | 381 | 12 | void read(BufferReadable& buf) { | 382 | 12 | size_t size = 0; | 383 | 12 | buf.read_binary(size); | 384 | 12 | column_data->clear(); | 385 | 12 | column_data->reserve(size); | 386 | | | 387 | 12 | StringRef s; | 388 | 12 | DataTypeSerDe::FormatOptions opt; | 389 | 12 | auto timezone = cctz::utc_time_zone(); | 390 | 12 | opt.timezone = &timezone; | 391 | 102 | for (size_t i = 0; i < size; i++) { | 392 | 90 | buf.read_binary(s); | 393 | 90 | Slice slice(s.data, s.size); | 394 | 90 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { | 395 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 396 | 0 | "Failed to deserialize data for " + column_data->get_name() + | 397 | 0 | " error: " + st.to_string()); | 398 | 0 | } | 399 | 90 | } | 400 | 12 | read_var_int(max_size, buf); | 401 | 12 | } |
Unexecuted instantiation: _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EE4readERNS_14BufferReadableE _ZN5doris32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EE4readERNS_14BufferReadableE Line | Count | Source | 381 | 78 | void read(BufferReadable& buf) { | 382 | 78 | size_t size = 0; | 383 | 78 | buf.read_binary(size); | 384 | 78 | column_data->clear(); | 385 | 78 | column_data->reserve(size); | 386 | | | 387 | 78 | StringRef s; | 388 | 78 | DataTypeSerDe::FormatOptions opt; | 389 | 78 | auto timezone = cctz::utc_time_zone(); | 390 | 78 | opt.timezone = &timezone; | 391 | 136 | for (size_t i = 0; i < size; i++) { | 392 | 58 | buf.read_binary(s); | 393 | 58 | Slice slice(s.data, s.size); | 394 | 58 | if (Status st = serde->deserialize_one_cell_from_json(*column_data, slice, opt); !st) { | 395 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 396 | 0 | "Failed to deserialize data for " + column_data->get_name() + | 397 | 0 | " error: " + st.to_string()); | 398 | 0 | } | 399 | 58 | } | 400 | 78 | read_var_int(max_size, buf); | 401 | 78 | } |
|
402 | | |
403 | | void reset() { |
404 | | column_data->clear(); |
405 | | max_size = -1; |
406 | | } |
407 | | |
408 | 156 | 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 | 408 | 24 | 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 | 408 | 132 | void insert_result_into(IColumn& to) const { to.insert_range_from(*column_data, 0, size()); } |
|
409 | | }; |
410 | | |
411 | | template <typename Data, bool HasLimit> |
412 | | class AggregateFunctionCollect final |
413 | | : public IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>, |
414 | | VarargsExpression, |
415 | | NotNullableAggregateFunction { |
416 | | static constexpr bool ENABLE_ARENA = |
417 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_STRING, HasLimit>> || |
418 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_CHAR, HasLimit>> || |
419 | | std::is_same_v<Data, AggregateFunctionCollectSetData<TYPE_VARCHAR, HasLimit>>; |
420 | | |
421 | | public: |
422 | | AggregateFunctionCollect(const DataTypes& argument_types_) |
423 | 95 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( |
424 | 95 | {argument_types_}), |
425 | 95 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {}Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 6 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 6 | {argument_types_}), | 425 | 6 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 4 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 4 | {argument_types_}), | 425 | 4 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 2 | {argument_types_}), | 425 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 2 | {argument_types_}), | 425 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 6 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 6 | {argument_types_}), | 425 | 6 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 9 | {argument_types_}), | 425 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 7 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 7 | {argument_types_}), | 425 | 7 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 7 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 7 | {argument_types_}), | 425 | 7 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE 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 Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE 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 | 423 | 7 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 7 | {argument_types_}), | 425 | 7 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 7 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 7 | {argument_types_}), | 425 | 7 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 5 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 5 | {argument_types_}), | 425 | 5 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 8 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 8 | {argument_types_}), | 425 | 8 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 2 | {argument_types_}), | 425 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 2 | {argument_types_}), | 425 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 2 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 2 | {argument_types_}), | 425 | 2 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
_ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 1 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 1 | {argument_types_}), | 425 | 1 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Unexecuted instantiation: _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE _ZN5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEC2ERKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EE Line | Count | Source | 423 | 9 | : IAggregateFunctionDataHelper<Data, AggregateFunctionCollect<Data, HasLimit>, true>( | 424 | 9 | {argument_types_}), | 425 | 9 | return_type(std::make_shared<DataTypeArray>(make_nullable(argument_types_[0]))) {} |
|
426 | | |
427 | 232 | std::string get_name() const override { |
428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, |
429 | 133 | Data>) { |
430 | 133 | return "collect_list"; |
431 | 133 | } else { |
432 | 99 | return "collect_set"; |
433 | 99 | } |
434 | 232 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 2 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 2 | Data>) { | 430 | 2 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 2 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 2 | Data>) { | 430 | 2 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 2 | } |
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 | 427 | 48 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | | Data>) { | 430 | | return "collect_list"; | 431 | 48 | } else { | 432 | 48 | return "collect_set"; | 433 | 48 | } | 434 | 48 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 48 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 48 | Data>) { | 430 | 48 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 48 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 1 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | | Data>) { | 430 | | return "collect_list"; | 431 | 1 | } else { | 432 | 1 | return "collect_set"; | 433 | 1 | } | 434 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 1 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 1 | Data>) { | 430 | 1 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 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_13PrimitiveTypeE43ELb1EEELb1EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE8get_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 _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 48 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | | Data>) { | 430 | | return "collect_list"; | 431 | 48 | } else { | 432 | 48 | return "collect_set"; | 433 | 48 | } | 434 | 48 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 48 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 48 | Data>) { | 430 | 48 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 48 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 32 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | 32 | Data>) { | 430 | 32 | return "collect_list"; | 431 | | } else { | 432 | | return "collect_set"; | 433 | | } | 434 | 32 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 1 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | | Data>) { | 430 | | return "collect_list"; | 431 | 1 | } else { | 432 | 1 | return "collect_set"; | 433 | 1 | } | 434 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE8get_nameB5cxx11Ev Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE8get_nameB5cxx11Ev _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE8get_nameB5cxx11Ev Line | Count | Source | 427 | 1 | std::string get_name() const override { | 428 | | if constexpr (std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 429 | | Data>) { | 430 | | return "collect_list"; | 431 | 1 | } else { | 432 | 1 | return "collect_set"; | 433 | 1 | } | 434 | 1 | } |
|
435 | | |
436 | 1.03k | DataTypePtr get_return_type() const override { return return_type; }Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 24 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 16 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 14 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 12 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 188 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 188 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 7 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 7 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE15get_return_typeEv 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE15get_return_typeEv 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 | 436 | 188 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 188 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE15get_return_typeEv Line | Count | Source | 436 | 132 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 38 | DataTypePtr get_return_type() const override { return return_type; } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 7 | DataTypePtr get_return_type() const override { return return_type; } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE15get_return_typeEv Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE15get_return_typeEv _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE15get_return_typeEv Line | Count | Source | 436 | 28 | DataTypePtr get_return_type() const override { return return_type; } |
|
437 | | |
438 | | void add(AggregateDataPtr __restrict place, const IColumn** columns, ssize_t row_num, |
439 | 34.8k | Arena& arena) const override { |
440 | 34.8k | auto& data = this->data(place); |
441 | 34.8k | if constexpr (HasLimit) { |
442 | 1.34k | if (data.max_size == -1) { |
443 | 1.24k | data.max_size = |
444 | 1.24k | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) |
445 | 1.24k | ->get_element(row_num); |
446 | 1.24k | } |
447 | 1.34k | if (data.size() >= data.max_size) { |
448 | 126 | return; |
449 | 126 | } |
450 | 1.34k | } |
451 | 1.22k | if constexpr (ENABLE_ARENA) { |
452 | 303 | data.add(*columns[0], row_num, arena); |
453 | 34.5k | } else { |
454 | 34.5k | data.add(*columns[0], row_num); |
455 | 34.5k | } |
456 | 34.8k | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 37 | Arena& arena) const override { | 440 | 37 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 37 | } else { | 454 | 37 | data.add(*columns[0], row_num); | 455 | 37 | } | 456 | 37 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 32.8k | Arena& arena) const override { | 440 | 32.8k | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 32.8k | } else { | 454 | 32.8k | data.add(*columns[0], row_num); | 455 | 32.8k | } | 456 | 32.8k | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 80 | Arena& arena) const override { | 440 | 80 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 80 | } else { | 454 | 80 | data.add(*columns[0], row_num); | 455 | 80 | } | 456 | 80 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 40 | Arena& arena) const override { | 440 | 40 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 40 | } else { | 454 | 40 | data.add(*columns[0], row_num); | 455 | 40 | } | 456 | 40 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 20 | Arena& arena) const override { | 440 | 20 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 20 | } else { | 454 | 20 | data.add(*columns[0], row_num); | 455 | 20 | } | 456 | 20 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 46 | Arena& arena) const override { | 440 | 46 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 46 | } else { | 454 | 46 | data.add(*columns[0], row_num); | 455 | 46 | } | 456 | 46 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 174 | Arena& arena) const override { | 440 | 174 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 174 | } else { | 454 | 174 | data.add(*columns[0], row_num); | 455 | 174 | } | 456 | 174 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 273 | Arena& arena) const override { | 440 | 273 | auto& data = this->data(place); | 441 | 273 | if constexpr (HasLimit) { | 442 | 273 | if (data.max_size == -1) { | 443 | 259 | data.max_size = | 444 | 259 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 259 | ->get_element(row_num); | 446 | 259 | } | 447 | 273 | if (data.size() >= data.max_size) { | 448 | 22 | return; | 449 | 22 | } | 450 | 273 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 273 | } else { | 454 | 273 | data.add(*columns[0], row_num); | 455 | 273 | } | 456 | 273 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 273 | Arena& arena) const override { | 440 | 273 | auto& data = this->data(place); | 441 | 273 | if constexpr (HasLimit) { | 442 | 273 | if (data.max_size == -1) { | 443 | 259 | data.max_size = | 444 | 259 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 259 | ->get_element(row_num); | 446 | 259 | } | 447 | 273 | if (data.size() >= data.max_size) { | 448 | 22 | return; | 449 | 22 | } | 450 | 273 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 273 | } else { | 454 | 273 | data.add(*columns[0], row_num); | 455 | 273 | } | 456 | 273 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 35 | Arena& arena) const override { | 440 | 35 | auto& data = this->data(place); | 441 | 35 | if constexpr (HasLimit) { | 442 | 35 | if (data.max_size == -1) { | 443 | 11 | data.max_size = | 444 | 11 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 11 | ->get_element(row_num); | 446 | 11 | } | 447 | 35 | if (data.size() >= data.max_size) { | 448 | 12 | return; | 449 | 12 | } | 450 | 35 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 35 | } else { | 454 | 35 | data.add(*columns[0], row_num); | 455 | 35 | } | 456 | 35 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 28 | Arena& arena) const override { | 440 | 28 | auto& data = this->data(place); | 441 | 28 | if constexpr (HasLimit) { | 442 | 28 | if (data.max_size == -1) { | 443 | 10 | data.max_size = | 444 | 10 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 10 | ->get_element(row_num); | 446 | 10 | } | 447 | 28 | if (data.size() >= data.max_size) { | 448 | 6 | return; | 449 | 6 | } | 450 | 28 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 28 | } else { | 454 | 28 | data.add(*columns[0], row_num); | 455 | 28 | } | 456 | 28 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE 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 | 439 | 273 | Arena& arena) const override { | 440 | 273 | auto& data = this->data(place); | 441 | 273 | if constexpr (HasLimit) { | 442 | 273 | if (data.max_size == -1) { | 443 | 259 | data.max_size = | 444 | 259 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 259 | ->get_element(row_num); | 446 | 259 | } | 447 | 273 | if (data.size() >= data.max_size) { | 448 | 22 | return; | 449 | 22 | } | 450 | 273 | } | 451 | 273 | if constexpr (ENABLE_ARENA) { | 452 | 273 | data.add(*columns[0], row_num, arena); | 453 | | } else { | 454 | | data.add(*columns[0], row_num); | 455 | | } | 456 | 273 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 273 | Arena& arena) const override { | 440 | 273 | auto& data = this->data(place); | 441 | 273 | if constexpr (HasLimit) { | 442 | 273 | if (data.max_size == -1) { | 443 | 259 | data.max_size = | 444 | 259 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 259 | ->get_element(row_num); | 446 | 259 | } | 447 | 273 | if (data.size() >= data.max_size) { | 448 | 22 | return; | 449 | 22 | } | 450 | 273 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 273 | } else { | 454 | 273 | data.add(*columns[0], row_num); | 455 | 273 | } | 456 | 273 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 193 | Arena& arena) const override { | 440 | 193 | auto& data = this->data(place); | 441 | 193 | if constexpr (HasLimit) { | 442 | 193 | if (data.max_size == -1) { | 443 | 183 | data.max_size = | 444 | 183 | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | 183 | ->get_element(row_num); | 446 | 183 | } | 447 | 193 | if (data.size() >= data.max_size) { | 448 | 20 | return; | 449 | 20 | } | 450 | 193 | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 193 | } else { | 454 | 193 | data.add(*columns[0], row_num); | 455 | 193 | } | 456 | 193 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 46 | Arena& arena) const override { | 440 | 46 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 46 | } else { | 454 | 46 | data.add(*columns[0], row_num); | 455 | 46 | } | 456 | 46 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 21 | Arena& arena) const override { | 440 | 21 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 21 | } else { | 454 | 21 | data.add(*columns[0], row_num); | 455 | 21 | } | 456 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 120 | Arena& arena) const override { | 440 | 120 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 120 | } else { | 454 | 120 | data.add(*columns[0], row_num); | 455 | 120 | } | 456 | 120 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 44 | Arena& arena) const override { | 440 | 44 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 44 | } else { | 454 | 44 | data.add(*columns[0], row_num); | 455 | 44 | } | 456 | 44 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 24 | Arena& arena) const override { | 440 | 24 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | | if constexpr (ENABLE_ARENA) { | 452 | | data.add(*columns[0], row_num, arena); | 453 | 24 | } else { | 454 | 24 | data.add(*columns[0], row_num); | 455 | 24 | } | 456 | 24 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE3addEPcPPKNS_7IColumnElRNS_5ArenaE Line | Count | Source | 439 | 30 | Arena& arena) const override { | 440 | 30 | auto& data = this->data(place); | 441 | | if constexpr (HasLimit) { | 442 | | if (data.max_size == -1) { | 443 | | data.max_size = | 444 | | assert_cast<const ColumnInt32*, TypeCheckOnRelease::DISABLE>(columns[1]) | 445 | | ->get_element(row_num); | 446 | | } | 447 | | if (data.size() >= data.max_size) { | 448 | | return; | 449 | | } | 450 | | } | 451 | 30 | if constexpr (ENABLE_ARENA) { | 452 | 30 | data.add(*columns[0], row_num, arena); | 453 | | } else { | 454 | | data.add(*columns[0], row_num); | 455 | | } | 456 | 30 | } |
|
457 | | |
458 | | void merge(AggregateDataPtr __restrict place, ConstAggregateDataPtr rhs, |
459 | 1.01k | Arena& arena) const override { |
460 | 1.01k | auto& data = this->data(place); |
461 | 1.01k | const auto& rhs_data = this->data(rhs); |
462 | 1.01k | if constexpr (HasLimit) { |
463 | 930 | if (rhs_data.size() == 0) { |
464 | 264 | return; |
465 | 264 | } |
466 | 666 | if (data.size() == 0) { |
467 | 359 | data.max_size = rhs_data.max_size; |
468 | 359 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { |
469 | 224 | throw Exception(ErrorCode::INVALID_ARGUMENT, |
470 | 224 | "{} aggregate states have incompatible limits: {} vs {}", |
471 | 224 | get_name(), data.max_size, rhs_data.max_size); |
472 | 224 | } |
473 | 666 | } |
474 | 442 | if constexpr (ENABLE_ARENA) { |
475 | 203 | data.merge(rhs_data, arena); |
476 | 815 | } else { |
477 | 815 | data.merge(rhs_data); |
478 | 815 | } |
479 | 1.01k | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 8 | Arena& arena) const override { | 460 | 8 | auto& data = this->data(place); | 461 | 8 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 8 | } else { | 477 | 8 | data.merge(rhs_data); | 478 | 8 | } | 479 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 21 | Arena& arena) const override { | 460 | 21 | auto& data = this->data(place); | 461 | 21 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 21 | } else { | 477 | 21 | data.merge(rhs_data); | 478 | 21 | } | 479 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 2 | Arena& arena) const override { | 460 | 2 | auto& data = this->data(place); | 461 | 2 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 2 | } else { | 477 | 2 | data.merge(rhs_data); | 478 | 2 | } | 479 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 2 | Arena& arena) const override { | 460 | 2 | auto& data = this->data(place); | 461 | 2 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 2 | } else { | 477 | 2 | data.merge(rhs_data); | 478 | 2 | } | 479 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 8 | Arena& arena) const override { | 460 | 8 | auto& data = this->data(place); | 461 | 8 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 8 | } else { | 477 | 8 | data.merge(rhs_data); | 478 | 8 | } | 479 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 12 | Arena& arena) const override { | 460 | 12 | auto& data = this->data(place); | 461 | 12 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 12 | } else { | 477 | 12 | data.merge(rhs_data); | 478 | 12 | } | 479 | 12 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 195 | Arena& arena) const override { | 460 | 195 | auto& data = this->data(place); | 461 | 195 | const auto& rhs_data = this->data(rhs); | 462 | 195 | if constexpr (HasLimit) { | 463 | 195 | if (rhs_data.size() == 0) { | 464 | 56 | return; | 465 | 56 | } | 466 | 139 | if (data.size() == 0) { | 467 | 75 | data.max_size = rhs_data.max_size; | 468 | 75 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 48 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 48 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 48 | get_name(), data.max_size, rhs_data.max_size); | 472 | 48 | } | 473 | 139 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 195 | } else { | 477 | 195 | data.merge(rhs_data); | 478 | 195 | } | 479 | 195 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 195 | Arena& arena) const override { | 460 | 195 | auto& data = this->data(place); | 461 | 195 | const auto& rhs_data = this->data(rhs); | 462 | 195 | if constexpr (HasLimit) { | 463 | 195 | if (rhs_data.size() == 0) { | 464 | 56 | return; | 465 | 56 | } | 466 | 139 | if (data.size() == 0) { | 467 | 75 | data.max_size = rhs_data.max_size; | 468 | 75 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 48 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 48 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 48 | get_name(), data.max_size, rhs_data.max_size); | 472 | 48 | } | 473 | 139 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 195 | } else { | 477 | 195 | data.merge(rhs_data); | 478 | 195 | } | 479 | 195 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 8 | Arena& arena) const override { | 460 | 8 | auto& data = this->data(place); | 461 | 8 | const auto& rhs_data = this->data(rhs); | 462 | 8 | if constexpr (HasLimit) { | 463 | 8 | if (rhs_data.size() == 0) { | 464 | 0 | return; | 465 | 0 | } | 466 | 8 | if (data.size() == 0) { | 467 | 4 | data.max_size = rhs_data.max_size; | 468 | 4 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 0 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 0 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 0 | get_name(), data.max_size, rhs_data.max_size); | 472 | 0 | } | 473 | 8 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 8 | } else { | 477 | 8 | data.merge(rhs_data); | 478 | 8 | } | 479 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 7 | Arena& arena) const override { | 460 | 7 | auto& data = this->data(place); | 461 | 7 | const auto& rhs_data = this->data(rhs); | 462 | 7 | if constexpr (HasLimit) { | 463 | 7 | if (rhs_data.size() == 0) { | 464 | 0 | return; | 465 | 0 | } | 466 | 7 | if (data.size() == 0) { | 467 | 4 | data.max_size = rhs_data.max_size; | 468 | 4 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 0 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 0 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 0 | get_name(), data.max_size, rhs_data.max_size); | 472 | 0 | } | 473 | 7 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 7 | } else { | 477 | 7 | data.merge(rhs_data); | 478 | 7 | } | 479 | 7 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE 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 | 459 | 195 | Arena& arena) const override { | 460 | 195 | auto& data = this->data(place); | 461 | 195 | const auto& rhs_data = this->data(rhs); | 462 | 195 | if constexpr (HasLimit) { | 463 | 195 | if (rhs_data.size() == 0) { | 464 | 56 | return; | 465 | 56 | } | 466 | 139 | if (data.size() == 0) { | 467 | 75 | data.max_size = rhs_data.max_size; | 468 | 75 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 48 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 48 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 48 | get_name(), data.max_size, rhs_data.max_size); | 472 | 48 | } | 473 | 139 | } | 474 | 195 | if constexpr (ENABLE_ARENA) { | 475 | 195 | data.merge(rhs_data, arena); | 476 | | } else { | 477 | | data.merge(rhs_data); | 478 | | } | 479 | 195 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 195 | Arena& arena) const override { | 460 | 195 | auto& data = this->data(place); | 461 | 195 | const auto& rhs_data = this->data(rhs); | 462 | 195 | if constexpr (HasLimit) { | 463 | 195 | if (rhs_data.size() == 0) { | 464 | 56 | return; | 465 | 56 | } | 466 | 139 | if (data.size() == 0) { | 467 | 75 | data.max_size = rhs_data.max_size; | 468 | 75 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 48 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 48 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 48 | get_name(), data.max_size, rhs_data.max_size); | 472 | 48 | } | 473 | 139 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 195 | } else { | 477 | 195 | data.merge(rhs_data); | 478 | 195 | } | 479 | 195 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 135 | Arena& arena) const override { | 460 | 135 | auto& data = this->data(place); | 461 | 135 | const auto& rhs_data = this->data(rhs); | 462 | 135 | if constexpr (HasLimit) { | 463 | 135 | if (rhs_data.size() == 0) { | 464 | 40 | return; | 465 | 40 | } | 466 | 95 | if (data.size() == 0) { | 467 | 51 | data.max_size = rhs_data.max_size; | 468 | 51 | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | 32 | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | 32 | "{} aggregate states have incompatible limits: {} vs {}", | 471 | 32 | get_name(), data.max_size, rhs_data.max_size); | 472 | 32 | } | 473 | 95 | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 135 | } else { | 477 | 135 | data.merge(rhs_data); | 478 | 135 | } | 479 | 135 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 8 | Arena& arena) const override { | 460 | 8 | auto& data = this->data(place); | 461 | 8 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 8 | } else { | 477 | 8 | data.merge(rhs_data); | 478 | 8 | } | 479 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 7 | Arena& arena) const override { | 460 | 7 | auto& data = this->data(place); | 461 | 7 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 7 | } else { | 477 | 7 | data.merge(rhs_data); | 478 | 7 | } | 479 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 2 | Arena& arena) const override { | 460 | 2 | auto& data = this->data(place); | 461 | 2 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 2 | } else { | 477 | 2 | data.merge(rhs_data); | 478 | 2 | } | 479 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 2 | Arena& arena) const override { | 460 | 2 | auto& data = this->data(place); | 461 | 2 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 2 | } else { | 477 | 2 | data.merge(rhs_data); | 478 | 2 | } | 479 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 1 | Arena& arena) const override { | 460 | 1 | auto& data = this->data(place); | 461 | 1 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | | if constexpr (ENABLE_ARENA) { | 475 | | data.merge(rhs_data, arena); | 476 | 1 | } else { | 477 | 1 | data.merge(rhs_data); | 478 | 1 | } | 479 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE5mergeEPcPKcRNS_5ArenaE Line | Count | Source | 459 | 8 | Arena& arena) const override { | 460 | 8 | auto& data = this->data(place); | 461 | 8 | const auto& rhs_data = this->data(rhs); | 462 | | if constexpr (HasLimit) { | 463 | | if (rhs_data.size() == 0) { | 464 | | return; | 465 | | } | 466 | | if (data.size() == 0) { | 467 | | data.max_size = rhs_data.max_size; | 468 | | } else if (UNLIKELY(data.max_size != rhs_data.max_size)) { | 469 | | throw Exception(ErrorCode::INVALID_ARGUMENT, | 470 | | "{} aggregate states have incompatible limits: {} vs {}", | 471 | | get_name(), data.max_size, rhs_data.max_size); | 472 | | } | 473 | | } | 474 | 8 | if constexpr (ENABLE_ARENA) { | 475 | 8 | data.merge(rhs_data, arena); | 476 | | } else { | 477 | | data.merge(rhs_data); | 478 | | } | 479 | 8 | } |
|
480 | | |
481 | 582 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { |
482 | 582 | this->data(place).write(buf); |
483 | 582 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 20 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 20 | this->data(place).write(buf); | 483 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 23 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 23 | this->data(place).write(buf); | 483 | 23 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 2 | this->data(place).write(buf); | 483 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 2 | this->data(place).write(buf); | 483 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 20 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 20 | this->data(place).write(buf); | 483 | 20 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 24 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 24 | this->data(place).write(buf); | 483 | 24 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 90 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 90 | this->data(place).write(buf); | 483 | 90 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 90 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 90 | this->data(place).write(buf); | 483 | 90 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 9 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 9 | this->data(place).write(buf); | 483 | 9 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 8 | this->data(place).write(buf); | 483 | 8 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE 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 | 481 | 90 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 90 | this->data(place).write(buf); | 483 | 90 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 90 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 90 | this->data(place).write(buf); | 483 | 90 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 62 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 62 | this->data(place).write(buf); | 483 | 62 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 16 | this->data(place).write(buf); | 483 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 8 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 8 | this->data(place).write(buf); | 483 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 2 | this->data(place).write(buf); | 483 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 2 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 2 | this->data(place).write(buf); | 483 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 1 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 1 | this->data(place).write(buf); | 483 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE9serializeEPKcRNS_14BufferWritableE Line | Count | Source | 481 | 16 | void serialize(ConstAggregateDataPtr __restrict place, BufferWritable& buf) const override { | 482 | 16 | this->data(place).write(buf); | 483 | 16 | } |
|
484 | | |
485 | | void deserialize(AggregateDataPtr __restrict place, BufferReadable& buf, |
486 | 637 | Arena&) const override { |
487 | 637 | this->data(place).read(buf); |
488 | 637 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 8 | Arena&) const override { | 487 | 8 | this->data(place).read(buf); | 488 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 21 | Arena&) const override { | 487 | 21 | this->data(place).read(buf); | 488 | 21 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 2 | Arena&) const override { | 487 | 2 | this->data(place).read(buf); | 488 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 2 | Arena&) const override { | 487 | 2 | this->data(place).read(buf); | 488 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 8 | Arena&) const override { | 487 | 8 | this->data(place).read(buf); | 488 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 12 | Arena&) const override { | 487 | 12 | this->data(place).read(buf); | 488 | 12 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 114 | Arena&) const override { | 487 | 114 | this->data(place).read(buf); | 488 | 114 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 114 | Arena&) const override { | 487 | 114 | this->data(place).read(buf); | 488 | 114 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 8 | Arena&) const override { | 487 | 8 | this->data(place).read(buf); | 488 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 7 | Arena&) const override { | 487 | 7 | this->data(place).read(buf); | 488 | 7 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE 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 | 486 | 114 | Arena&) const override { | 487 | 114 | this->data(place).read(buf); | 488 | 114 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 114 | Arena&) const override { | 487 | 114 | this->data(place).read(buf); | 488 | 114 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 78 | Arena&) const override { | 487 | 78 | this->data(place).read(buf); | 488 | 78 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 8 | Arena&) const override { | 487 | 8 | this->data(place).read(buf); | 488 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 7 | Arena&) const override { | 487 | 7 | this->data(place).read(buf); | 488 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 2 | Arena&) const override { | 487 | 2 | this->data(place).read(buf); | 488 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 2 | Arena&) const override { | 487 | 2 | this->data(place).read(buf); | 488 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 1 | Arena&) const override { | 487 | 1 | this->data(place).read(buf); | 488 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE11deserializeEPcRNS_14BufferReadableERNS_5ArenaE Line | Count | Source | 486 | 8 | Arena&) const override { | 487 | 8 | this->data(place).read(buf); | 488 | 8 | } |
|
489 | | |
490 | 1.04k | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { |
491 | 1.04k | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); |
492 | 1.04k | auto& to_nested_col = to_arr.get_data(); |
493 | 1.04k | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); |
494 | 1.04k | this->data(place).insert_result_into(col_null->get_nested_column()); |
495 | 1.04k | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); |
496 | 1.04k | to_arr.get_offsets().push_back(to_nested_col.size()); |
497 | 1.04k | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 19 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 19 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 19 | auto& to_nested_col = to_arr.get_data(); | 493 | 19 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 19 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 19 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 19 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 19 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 22 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 22 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 22 | auto& to_nested_col = to_arr.get_data(); | 493 | 22 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 22 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 22 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 22 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 22 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 4 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 4 | auto& to_nested_col = to_arr.get_data(); | 493 | 4 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 4 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 4 | auto& to_nested_col = to_arr.get_data(); | 493 | 4 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 16 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 16 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 16 | auto& to_nested_col = to_arr.get_data(); | 493 | 16 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 16 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 16 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 16 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 16 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 24 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 24 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 24 | auto& to_nested_col = to_arr.get_data(); | 493 | 24 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 24 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 24 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 24 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 24 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 188 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 188 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 188 | auto& to_nested_col = to_arr.get_data(); | 493 | 188 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 188 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 188 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 188 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 188 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 188 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 188 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 188 | auto& to_nested_col = to_arr.get_data(); | 493 | 188 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 188 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 188 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 188 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 188 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 6 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 6 | auto& to_nested_col = to_arr.get_data(); | 493 | 6 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 6 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 6 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 6 | auto& to_nested_col = to_arr.get_data(); | 493 | 6 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 6 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 6 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 6 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 6 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE 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 Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE 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 | 490 | 188 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 188 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 188 | auto& to_nested_col = to_arr.get_data(); | 493 | 188 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 188 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 188 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 188 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 188 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 188 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 188 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 188 | auto& to_nested_col = to_arr.get_data(); | 493 | 188 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 188 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 188 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 188 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 188 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 132 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 132 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 132 | auto& to_nested_col = to_arr.get_data(); | 493 | 132 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 132 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 132 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 132 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 132 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 14 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 14 | auto& to_nested_col = to_arr.get_data(); | 493 | 14 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 14 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 8 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 8 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 8 | auto& to_nested_col = to_arr.get_data(); | 493 | 8 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 8 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 8 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 8 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 8 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 4 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 4 | auto& to_nested_col = to_arr.get_data(); | 493 | 4 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 4 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 4 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 4 | auto& to_nested_col = to_arr.get_data(); | 493 | 4 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 4 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 4 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 4 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 4 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 2 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 2 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 2 | auto& to_nested_col = to_arr.get_data(); | 493 | 2 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 2 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 2 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 2 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 2 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE18insert_result_intoEPKcRNS_7IColumnE Line | Count | Source | 490 | 14 | void insert_result_into(ConstAggregateDataPtr __restrict place, IColumn& to) const override { | 491 | 14 | auto& to_arr = assert_cast<ColumnArray&, TypeCheckOnRelease::DISABLE>(to); | 492 | 14 | auto& to_nested_col = to_arr.get_data(); | 493 | 14 | auto* col_null = assert_cast<ColumnNullable*, TypeCheckOnRelease::DISABLE>(&to_nested_col); | 494 | 14 | this->data(place).insert_result_into(col_null->get_nested_column()); | 495 | 14 | col_null->get_null_map_data().resize_fill(col_null->get_nested_column().size(), 0); | 496 | 14 | to_arr.get_offsets().push_back(to_nested_col.size()); | 497 | 14 | } |
|
498 | | |
499 | 46 | void check_input_columns_type(const IColumn** columns) const override { |
500 | 46 | IAggregateFunction::check_input_columns_type(columns); |
501 | | if constexpr (is_string_type(Data::PType) && |
502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, |
503 | 1 | Data>) { |
504 | 1 | this->template check_argument_column_type<ColumnString>(columns[0]); |
505 | 1 | } |
506 | 46 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 2 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 2 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 2 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 14 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 14 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 14 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 1 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 1 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | 1 | Data>) { | 504 | 1 | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | 1 | } | 506 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 7 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 7 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 7 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 7 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 7 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 7 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 4 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 4 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 4 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 7 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 7 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 7 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE24check_input_columns_typeEPPKNS_7IColumnE Line | Count | Source | 499 | 4 | void check_input_columns_type(const IColumn** columns) const override { | 500 | 4 | IAggregateFunction::check_input_columns_type(columns); | 501 | | if constexpr (is_string_type(Data::PType) && | 502 | | std::is_same_v<AggregateFunctionCollectListData<Data::PType, HasLimit>, | 503 | | Data>) { | 504 | | this->template check_argument_column_type<ColumnString>(columns[0]); | 505 | | } | 506 | 4 | } |
|
507 | | |
508 | 61 | void check_result_column_type(const IColumn& to) const override { |
509 | 61 | IAggregateFunction::check_result_column_type(to); |
510 | 61 | if constexpr (is_string_type(Data::PType)) { |
511 | 14 | const auto* array_column = check_and_get_column<ColumnArray>(to); |
512 | 14 | if (UNLIKELY(array_column == nullptr)) { |
513 | 0 | throw doris::Exception(Status::InternalError( |
514 | 0 | "Aggregate function {} result type check failed: Column type {} is not " |
515 | 0 | "ColumnArray", |
516 | 0 | get_name(), to.get_name())); |
517 | 0 | } |
518 | | |
519 | 14 | const auto& nested_column = array_column->get_data(); |
520 | 14 | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); |
521 | 14 | if (UNLIKELY(nullable_column == nullptr)) { |
522 | 0 | throw doris::Exception(Status::InternalError( |
523 | 0 | "Aggregate function {} result type check failed: Column type {} is not " |
524 | 0 | "ColumnNullable", |
525 | 0 | get_name(), nested_column.get_name())); |
526 | 0 | } |
527 | 14 | this->template check_result_column_type_as<ColumnString>( |
528 | 14 | nullable_column->get_nested_column()); |
529 | 14 | } |
530 | 61 | } Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 5 | void check_result_column_type(const IColumn& to) const override { | 509 | 5 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 5 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 12 | void check_result_column_type(const IColumn& to) const override { | 509 | 12 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 12 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 1 | void check_result_column_type(const IColumn& to) const override { | 509 | 1 | IAggregateFunction::check_result_column_type(to); | 510 | 1 | if constexpr (is_string_type(Data::PType)) { | 511 | 1 | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | 1 | if (UNLIKELY(array_column == nullptr)) { | 513 | 0 | throw doris::Exception(Status::InternalError( | 514 | 0 | "Aggregate function {} result type check failed: Column type {} is not " | 515 | 0 | "ColumnArray", | 516 | 0 | get_name(), to.get_name())); | 517 | 0 | } | 518 | | | 519 | 1 | const auto& nested_column = array_column->get_data(); | 520 | 1 | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | 1 | if (UNLIKELY(nullable_column == nullptr)) { | 522 | 0 | throw doris::Exception(Status::InternalError( | 523 | 0 | "Aggregate function {} result type check failed: Column type {} is not " | 524 | 0 | "ColumnNullable", | 525 | 0 | get_name(), nested_column.get_name())); | 526 | 0 | } | 527 | 1 | this->template check_result_column_type_as<ColumnString>( | 528 | 1 | nullable_column->get_nested_column()); | 529 | 1 | } | 530 | 1 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 6 | void check_result_column_type(const IColumn& to) const override { | 509 | 6 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 6 | } |
_ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 6 | void check_result_column_type(const IColumn& to) const override { | 509 | 6 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 6 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE43ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 12 | void check_result_column_type(const IColumn& to) const override { | 509 | 12 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 12 | } |
_ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 6 | void check_result_column_type(const IColumn& to) const override { | 509 | 6 | IAggregateFunction::check_result_column_type(to); | 510 | | if constexpr (is_string_type(Data::PType)) { | 511 | | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | | if (UNLIKELY(array_column == nullptr)) { | 513 | | throw doris::Exception(Status::InternalError( | 514 | | "Aggregate function {} result type check failed: Column type {} is not " | 515 | | "ColumnArray", | 516 | | get_name(), to.get_name())); | 517 | | } | 518 | | | 519 | | const auto& nested_column = array_column->get_data(); | 520 | | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | | if (UNLIKELY(nullable_column == nullptr)) { | 522 | | throw doris::Exception(Status::InternalError( | 523 | | "Aggregate function {} result type check failed: Column type {} is not " | 524 | | "ColumnNullable", | 525 | | get_name(), nested_column.get_name())); | 526 | | } | 527 | | this->template check_result_column_type_as<ColumnString>( | 528 | | nullable_column->get_nested_column()); | 529 | | } | 530 | 6 | } |
Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE43ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Unexecuted instantiation: _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE _ZNK5doris24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EE24check_result_column_typeERKNS_7IColumnE Line | Count | Source | 508 | 13 | void check_result_column_type(const IColumn& to) const override { | 509 | 13 | IAggregateFunction::check_result_column_type(to); | 510 | 13 | if constexpr (is_string_type(Data::PType)) { | 511 | 13 | const auto* array_column = check_and_get_column<ColumnArray>(to); | 512 | 13 | if (UNLIKELY(array_column == nullptr)) { | 513 | 0 | throw doris::Exception(Status::InternalError( | 514 | 0 | "Aggregate function {} result type check failed: Column type {} is not " | 515 | 0 | "ColumnArray", | 516 | 0 | get_name(), to.get_name())); | 517 | 0 | } | 518 | | | 519 | 13 | const auto& nested_column = array_column->get_data(); | 520 | 13 | const auto* nullable_column = check_and_get_column<ColumnNullable>(nested_column); | 521 | 13 | if (UNLIKELY(nullable_column == nullptr)) { | 522 | 0 | throw doris::Exception(Status::InternalError( | 523 | 0 | "Aggregate function {} result type check failed: Column type {} is not " | 524 | 0 | "ColumnNullable", | 525 | 0 | get_name(), nested_column.get_name())); | 526 | 0 | } | 527 | 13 | this->template check_result_column_type_as<ColumnString>( | 528 | 13 | nullable_column->get_nested_column()); | 529 | 13 | } | 530 | 13 | } |
|
531 | | |
532 | | private: |
533 | | DataTypePtr return_type; |
534 | | }; |
535 | | |
536 | | } // namespace doris |