Coverage Report

Created: 2026-03-19 10:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/pipeline/dependency.cpp
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
#include "exec/pipeline/dependency.h"
19
20
#include <memory>
21
#include <mutex>
22
23
#include "common/logging.h"
24
#include "exec/operator/multi_cast_data_streamer.h"
25
#include "exec/pipeline/pipeline_fragment_context.h"
26
#include "exec/pipeline/pipeline_task.h"
27
#include "exec/spill/spill_file_manager.h"
28
#include "exprs/vectorized_agg_fn.h"
29
#include "exprs/vslot_ref.h"
30
#include "runtime/exec_env.h"
31
32
namespace doris {
33
#include "common/compile_check_begin.h"
34
35
Dependency* BasicSharedState::create_source_dependency(int operator_id, int node_id,
36
72.3k
                                                       const std::string& name) {
37
72.3k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
38
72.3k
    source_deps.back()->set_shared_state(this);
39
72.3k
    return source_deps.back().get();
40
72.3k
}
41
42
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
43
7
                                                  const std::string& name) {
44
7
    source_deps.resize(num_sources, nullptr);
45
32
    for (auto& source_dep : source_deps) {
46
32
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
47
32
        source_dep->set_shared_state(this);
48
32
    }
49
7
}
50
51
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
52
72.3k
                                                     const std::string& name) {
53
72.3k
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
54
72.3k
    sink_deps.back()->set_shared_state(this);
55
72.3k
    return sink_deps.back().get();
56
72.3k
}
57
58
24
void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) {
59
24
    DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr ||
60
0
           _blocked_task[_blocked_task.size() - 1].lock().get() != task.get())
61
0
            << "Duplicate task: " << task->debug_string();
62
24
    _blocked_task.push_back(task);
63
24
}
64
65
122k
void Dependency::set_ready() {
66
122k
    if (_ready) {
67
73.3k
        return;
68
73.3k
    }
69
49.5k
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
70
49.5k
    {
71
49.5k
        std::unique_lock<std::mutex> lc(_task_lock);
72
49.5k
        if (_ready) {
73
0
            return;
74
0
        }
75
49.5k
        _watcher.stop();
76
49.5k
        _ready = true;
77
49.5k
        local_block_task.swap(_blocked_task);
78
49.5k
    }
79
24
    for (auto task : local_block_task) {
80
24
        if (auto t = task.lock()) {
81
24
            std::unique_lock<std::mutex> lc(_task_lock);
82
24
            THROW_IF_ERROR(t->wake_up(this, lc));
83
24
        }
84
24
    }
85
49.5k
}
86
87
2.73M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
88
2.73M
    std::unique_lock<std::mutex> lc(_task_lock);
89
2.73M
    auto ready = _ready.load();
90
2.73M
    if (!ready && task) {
91
24
        _add_block_task(task);
92
24
        start_watcher();
93
24
        THROW_IF_ERROR(task->blocked(this, lc));
94
24
    }
95
2.73M
    return ready ? nullptr : this;
96
2.73M
}
97
98
379k
std::string Dependency::debug_string(int indentation_level) {
99
379k
    fmt::memory_buffer debug_string_buffer;
100
379k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
101
379k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
102
379k
                   _ready, _always_ready);
103
379k
    return fmt::to_string(debug_string_buffer);
104
379k
}
105
106
0
std::string CountedFinishDependency::debug_string(int indentation_level) {
107
0
    fmt::memory_buffer debug_string_buffer;
108
0
    fmt::format_to(debug_string_buffer,
109
0
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
110
0
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
111
0
                   _ready, _always_ready, _counter);
112
0
    return fmt::to_string(debug_string_buffer);
113
0
}
114
115
0
void RuntimeFilterTimer::call_timeout() {
116
0
    _parent->set_ready();
117
0
}
118
119
2
void RuntimeFilterTimer::call_ready() {
120
2
    _parent->set_ready();
121
2
}
122
123
// should check rf timeout in two case:
124
// 1. the rf is ready just remove the wait queue
125
// 2. if the rf have local dependency, the rf should start wait when all local dependency is ready
126
2
bool RuntimeFilterTimer::should_be_check_timeout() {
127
2
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
128
0
        bool all_ready = true;
129
0
        for (auto& dep : _local_runtime_filter_dependencies) {
130
0
            if (!dep->ready()) {
131
0
                all_ready = false;
132
0
                break;
133
0
            }
134
0
        }
135
0
        if (all_ready) {
136
0
            _local_runtime_filter_dependencies.clear();
137
0
            _registration_time = MonotonicMillis();
138
0
        }
139
0
        return all_ready;
140
0
    }
141
2
    return true;
142
2
}
143
144
1
void RuntimeFilterTimerQueue::start() {
145
4
    while (!_stop) {
146
3
        std::unique_lock<std::mutex> lk(cv_m);
147
148
773
        while (_que.empty() && !_stop) {
149
1.53k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
150
770
        }
151
3
        if (_stop) {
152
0
            break;
153
0
        }
154
3
        {
155
3
            std::unique_lock<std::mutex> lc(_que_lock);
156
3
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
157
4
            for (auto& it : _que) {
158
4
                if (it.use_count() == 1) {
159
                    // `use_count == 1` means this runtime filter has been released
160
2
                } else if (it->should_be_check_timeout()) {
161
2
                    if (it->force_wait_timeout() || it->_parent->is_blocked_by()) {
162
                        // This means runtime filter is not ready, so we call timeout or continue to poll this timer.
163
2
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
164
2
                        if (ms_since_registration > it->wait_time_ms()) {
165
0
                            it->call_timeout();
166
2
                        } else {
167
2
                            new_que.push_back(std::move(it));
168
2
                        }
169
2
                    }
170
2
                } else {
171
0
                    new_que.push_back(std::move(it));
172
0
                }
173
4
            }
174
3
            new_que.swap(_que);
175
3
        }
176
3
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
177
3
    }
178
1
    _shutdown = true;
179
1
}
180
181
20
void LocalExchangeSharedState::sub_running_sink_operators() {
182
20
    std::unique_lock<std::mutex> lc(le_lock);
183
20
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
184
5
        _set_always_ready();
185
5
    }
186
20
}
187
188
20
void LocalExchangeSharedState::sub_running_source_operators() {
189
20
    std::unique_lock<std::mutex> lc(le_lock);
190
20
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
191
5
        _set_always_ready();
192
5
        exchanger->finalize();
193
5
    }
194
20
}
195
196
6
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
197
6
    source_deps.resize(num_instances, nullptr);
198
6
    mem_counters.resize(num_instances, nullptr);
199
6
}
200
201
4
MutableColumns AggSharedState::_get_keys_hash_table() {
202
4
    return std::visit(
203
4
            Overload {[&](std::monostate& arg) {
204
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
205
0
                          return MutableColumns();
206
0
                      },
207
4
                      [&](auto&& agg_method) -> MutableColumns {
208
4
                          MutableColumns key_columns;
209
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
4
                              key_columns.emplace_back(
211
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
4
                          }
213
4
                          auto& data = *agg_method.hash_table;
214
4
                          bool has_null_key = data.has_null_key_data();
215
4
                          const auto size = data.size() - has_null_key;
216
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
4
                          std::vector<KeyType> keys(size);
218
219
4
                          uint32_t num_rows = 0;
220
4
                          auto iter = aggregate_data_container->begin();
221
4
                          {
222
27
                              while (iter != aggregate_data_container->end()) {
223
23
                                  keys[num_rows] = iter.get_key<KeyType>();
224
23
                                  ++iter;
225
23
                                  ++num_rows;
226
23
                              }
227
4
                          }
228
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
4
                          if (has_null_key) {
230
1
                              key_columns[0]->insert_data(nullptr, 0);
231
1
                          }
232
4
                          return key_columns;
233
4
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
2
                      [&](auto&& agg_method) -> MutableColumns {
208
2
                          MutableColumns key_columns;
209
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
2
                              key_columns.emplace_back(
211
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
2
                          }
213
2
                          auto& data = *agg_method.hash_table;
214
2
                          bool has_null_key = data.has_null_key_data();
215
2
                          const auto size = data.size() - has_null_key;
216
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
2
                          std::vector<KeyType> keys(size);
218
219
2
                          uint32_t num_rows = 0;
220
2
                          auto iter = aggregate_data_container->begin();
221
2
                          {
222
14
                              while (iter != aggregate_data_container->end()) {
223
12
                                  keys[num_rows] = iter.get_key<KeyType>();
224
12
                                  ++iter;
225
12
                                  ++num_rows;
226
12
                              }
227
2
                          }
228
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
2
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
2
                          return key_columns;
233
2
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
207
2
                      [&](auto&& agg_method) -> MutableColumns {
208
2
                          MutableColumns key_columns;
209
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
2
                              key_columns.emplace_back(
211
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
2
                          }
213
2
                          auto& data = *agg_method.hash_table;
214
2
                          bool has_null_key = data.has_null_key_data();
215
2
                          const auto size = data.size() - has_null_key;
216
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
2
                          std::vector<KeyType> keys(size);
218
219
2
                          uint32_t num_rows = 0;
220
2
                          auto iter = aggregate_data_container->begin();
221
2
                          {
222
13
                              while (iter != aggregate_data_container->end()) {
223
11
                                  keys[num_rows] = iter.get_key<KeyType>();
224
11
                                  ++iter;
225
11
                                  ++num_rows;
226
11
                              }
227
2
                          }
228
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
2
                          if (has_null_key) {
230
1
                              key_columns[0]->insert_data(nullptr, 0);
231
1
                          }
232
2
                          return key_columns;
233
2
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
234
4
            agg_data->method_variant);
235
4
}
236
237
4
void AggSharedState::build_limit_heap(size_t hash_table_size) {
238
4
    limit_columns = _get_keys_hash_table();
239
28
    for (size_t i = 0; i < hash_table_size; ++i) {
240
24
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
241
24
    }
242
16
    while (hash_table_size > limit) {
243
12
        limit_heap.pop();
244
12
        hash_table_size--;
245
12
    }
246
4
    limit_columns_min = limit_heap.top()._row_id;
247
4
}
248
249
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
250
8
                                     const std::vector<int>* key_locs) {
251
8
    if (num_rows) {
252
8
        cmp_res.resize(num_rows);
253
8
        need_computes.resize(num_rows);
254
8
        memset(need_computes.data(), 0, need_computes.size());
255
8
        memset(cmp_res.data(), 0, cmp_res.size());
256
257
8
        const auto key_size = null_directions.size();
258
16
        for (int i = 0; i < key_size; i++) {
259
8
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
260
8
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
261
8
                                              null_directions[i], order_directions[i], cmp_res,
262
8
                                              need_computes.data());
263
8
        }
264
265
8
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
266
58
            for (size_t i = 0; i < rows; ++i) {
267
50
                computes[i] = computes[i] == res[i];
268
50
            }
269
8
        };
270
8
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
271
272
8
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
273
8
    }
274
275
0
    return false;
276
8
}
277
278
54
Status AggSharedState::reset_hash_table() {
279
54
    return std::visit(
280
54
            Overload {[&](std::monostate& arg) -> Status {
281
0
                          return Status::InternalError("Uninited hash table");
282
0
                      },
283
54
                      [&](auto& agg_method) {
284
54
                          auto& hash_table = *agg_method.hash_table;
285
54
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
54
                          agg_method.arena.clear();
288
54
                          agg_method.inited_iterator = false;
289
290
1.06M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
1.06M
                              if (mapped) {
292
1.06M
                                  _destroy_agg_status(mapped);
293
1.06M
                                  mapped = nullptr;
294
1.06M
                              }
295
1.06M
                          });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_ENKUlSC_E_clIS5_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_
Line
Count
Source
290
1.06M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
1.06M
                              if (mapped) {
292
1.06M
                                  _destroy_agg_status(mapped);
293
1.06M
                                  mapped = nullptr;
294
1.06M
                              }
295
1.06M
                          });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_ENKUlSG_E_clIS7_EEDaSG_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
296
297
54
                          if (hash_table.has_null_key_data()) {
298
2
                              _destroy_agg_status(
299
2
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
2
                          }
301
302
54
                          aggregate_data_container.reset(new AggregateDataContainer(
303
54
                                  sizeof(typename HashTableType::key_type),
304
54
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
54
                                   align_aggregate_states) *
306
54
                                          align_aggregate_states));
307
54
                          agg_method.hash_table.reset(new HashTableType());
308
54
                          return Status::OK();
309
54
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_
Line
Count
Source
283
52
                      [&](auto& agg_method) {
284
52
                          auto& hash_table = *agg_method.hash_table;
285
52
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
52
                          agg_method.arena.clear();
288
52
                          agg_method.inited_iterator = false;
289
290
52
                          hash_table.for_each_mapped([&](auto& mapped) {
291
52
                              if (mapped) {
292
52
                                  _destroy_agg_status(mapped);
293
52
                                  mapped = nullptr;
294
52
                              }
295
52
                          });
296
297
52
                          if (hash_table.has_null_key_data()) {
298
0
                              _destroy_agg_status(
299
0
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
0
                          }
301
302
52
                          aggregate_data_container.reset(new AggregateDataContainer(
303
52
                                  sizeof(typename HashTableType::key_type),
304
52
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
52
                                   align_aggregate_states) *
306
52
                                          align_aggregate_states));
307
52
                          agg_method.hash_table.reset(new HashTableType());
308
52
                          return Status::OK();
309
52
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_
Line
Count
Source
283
2
                      [&](auto& agg_method) {
284
2
                          auto& hash_table = *agg_method.hash_table;
285
2
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
2
                          agg_method.arena.clear();
288
2
                          agg_method.inited_iterator = false;
289
290
2
                          hash_table.for_each_mapped([&](auto& mapped) {
291
2
                              if (mapped) {
292
2
                                  _destroy_agg_status(mapped);
293
2
                                  mapped = nullptr;
294
2
                              }
295
2
                          });
296
297
2
                          if (hash_table.has_null_key_data()) {
298
2
                              _destroy_agg_status(
299
2
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
2
                          }
301
302
2
                          aggregate_data_container.reset(new AggregateDataContainer(
303
2
                                  sizeof(typename HashTableType::key_type),
304
2
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
2
                                   align_aggregate_states) *
306
2
                                          align_aggregate_states));
307
2
                          agg_method.hash_table.reset(new HashTableType());
308
2
                          return Status::OK();
309
2
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_
310
54
            agg_data->method_variant);
311
54
}
312
313
20
void PartitionedAggSharedState::close() {
314
32
    for (auto& partition : _spill_partitions) {
315
32
        if (partition) {
316
4
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
317
4
        }
318
32
    }
319
20
    _spill_partitions.clear();
320
20
}
321
322
11
void SpillSortSharedState::close() {
323
    // need to use CAS instead of only `if (!is_closed)` statement,
324
    // to avoid concurrent entry of close() both pass the if statement
325
11
    bool false_close = false;
326
11
    if (!is_closed.compare_exchange_strong(false_close, true)) {
327
0
        return;
328
0
    }
329
11
    DCHECK(!false_close && is_closed);
330
11
    sorted_spill_groups.clear();
331
11
}
332
333
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
334
        : multi_cast_data_streamer(
335
3
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
336
337
7
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
338
7
    auto ctxs = evaluator->input_exprs_ctxs();
339
7
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
340
0
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
341
0
            << ctxs[0]->root()->debug_string();
342
7
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
343
7
}
344
345
1.06M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
346
2.13M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
347
1.06M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
348
1.06M
    }
349
1.06M
}
350
351
6
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
352
353
23
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
354
23
    if (ctxs.size() > build_not_ignore_null.size()) {
355
0
        return Status::InternalError("build_not_ignore_null not initialized");
356
0
    }
357
358
60
    for (int i = 0; i < ctxs.size(); ++i) {
359
37
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
360
37
    }
361
362
23
    return Status::OK();
363
23
}
364
365
26
size_t SetSharedState::get_hash_table_size() const {
366
26
    size_t hash_table_size = 0;
367
26
    std::visit(
368
26
            [&](auto&& arg) {
369
26
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
26
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
26
                    hash_table_size = arg.hash_table->size();
372
26
                }
373
26
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
368
4
            [&](auto&& arg) {
369
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
4
                    hash_table_size = arg.hash_table->size();
372
4
                }
373
4
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
368
16
            [&](auto&& arg) {
369
16
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
16
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
16
                    hash_table_size = arg.hash_table->size();
372
16
                }
373
16
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
368
4
            [&](auto&& arg) {
369
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
4
                    hash_table_size = arg.hash_table->size();
372
4
                }
373
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
2
            [&](auto&& arg) {
369
2
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
2
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
2
                    hash_table_size = arg.hash_table->size();
372
2
                }
373
2
            },
374
26
            hash_table_variants->method_variant);
375
26
    return hash_table_size;
376
26
}
377
378
10
Status SetSharedState::hash_table_init() {
379
10
    std::vector<DataTypePtr> data_types;
380
27
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
381
17
        auto& ctx = child_exprs_lists[0][i];
382
17
        auto data_type = ctx->root()->data_type();
383
17
        if (build_not_ignore_null[i]) {
384
4
            data_type = make_nullable(data_type);
385
4
        }
386
17
        data_types.emplace_back(std::move(data_type));
387
17
    }
388
10
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
389
10
}
390
391
4
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
392
8
    for (int j = 0; j < key_columns.size(); ++j) {
393
4
        limit_columns[j]->insert_from(*key_columns[j], row_id);
394
4
    }
395
4
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
396
4
                       null_directions);
397
398
4
    limit_heap.pop();
399
4
    limit_columns_min = limit_heap.top()._row_id;
400
4
}
401
402
} // namespace doris