Coverage Report

Created: 2026-03-25 04:29

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
673k
                                                       const std::string& name) {
37
673k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
38
673k
    source_deps.back()->set_shared_state(this);
39
673k
    return source_deps.back().get();
40
673k
}
41
42
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
43
116k
                                                  const std::string& name) {
44
116k
    source_deps.resize(num_sources, nullptr);
45
825k
    for (auto& source_dep : source_deps) {
46
825k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
47
825k
        source_dep->set_shared_state(this);
48
825k
    }
49
116k
}
50
51
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
52
1.31M
                                                     const std::string& name) {
53
1.31M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
54
1.31M
    sink_deps.back()->set_shared_state(this);
55
1.31M
    return sink_deps.back().get();
56
1.31M
}
57
58
5.51M
void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) {
59
18.4E
    DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr ||
60
18.4E
           _blocked_task[_blocked_task.size() - 1].lock().get() != task.get())
61
18.4E
            << "Duplicate task: " << task->debug_string();
62
5.51M
    _blocked_task.push_back(task);
63
5.51M
}
64
65
62.0M
void Dependency::set_ready() {
66
62.0M
    if (_ready) {
67
59.0M
        return;
68
59.0M
    }
69
3.05M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
70
3.05M
    {
71
3.05M
        std::unique_lock<std::mutex> lc(_task_lock);
72
3.05M
        if (_ready) {
73
1
            return;
74
1
        }
75
3.05M
        _watcher.stop();
76
3.05M
        _ready = true;
77
3.05M
        local_block_task.swap(_blocked_task);
78
3.05M
    }
79
5.52M
    for (auto task : local_block_task) {
80
5.52M
        if (auto t = task.lock()) {
81
5.52M
            std::unique_lock<std::mutex> lc(_task_lock);
82
5.52M
            THROW_IF_ERROR(t->wake_up(this, lc));
83
5.52M
        }
84
5.52M
    }
85
3.05M
}
86
87
142M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
88
142M
    std::unique_lock<std::mutex> lc(_task_lock);
89
142M
    auto ready = _ready.load();
90
142M
    if (!ready && task) {
91
5.52M
        _add_block_task(task);
92
5.52M
        start_watcher();
93
5.52M
        THROW_IF_ERROR(task->blocked(this, lc));
94
5.52M
    }
95
142M
    return ready ? nullptr : this;
96
142M
}
97
98
388k
std::string Dependency::debug_string(int indentation_level) {
99
388k
    fmt::memory_buffer debug_string_buffer;
100
388k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
101
388k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
102
388k
                   _ready, _always_ready);
103
388k
    return fmt::to_string(debug_string_buffer);
104
388k
}
105
106
360
std::string CountedFinishDependency::debug_string(int indentation_level) {
107
360
    fmt::memory_buffer debug_string_buffer;
108
360
    fmt::format_to(debug_string_buffer,
109
360
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
110
360
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
111
360
                   _ready, _always_ready, _counter);
112
360
    return fmt::to_string(debug_string_buffer);
113
360
}
114
115
3.04k
void RuntimeFilterTimer::call_timeout() {
116
3.04k
    _parent->set_ready();
117
3.04k
}
118
119
78.1k
void RuntimeFilterTimer::call_ready() {
120
78.1k
    _parent->set_ready();
121
78.1k
}
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
9.64M
bool RuntimeFilterTimer::should_be_check_timeout() {
127
9.64M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
128
227k
        bool all_ready = true;
129
227k
        for (auto& dep : _local_runtime_filter_dependencies) {
130
227k
            if (!dep->ready()) {
131
226k
                all_ready = false;
132
226k
                break;
133
226k
            }
134
227k
        }
135
227k
        if (all_ready) {
136
882
            _local_runtime_filter_dependencies.clear();
137
882
            _registration_time = MonotonicMillis();
138
882
        }
139
227k
        return all_ready;
140
227k
    }
141
9.42M
    return true;
142
9.64M
}
143
144
8
void RuntimeFilterTimerQueue::start() {
145
258k
    while (!_stop) {
146
258k
        std::unique_lock<std::mutex> lk(cv_m);
147
148
264k
        while (_que.empty() && !_stop) {
149
11.3k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
150
5.67k
        }
151
258k
        if (_stop) {
152
3
            break;
153
3
        }
154
258k
        {
155
258k
            std::unique_lock<std::mutex> lc(_que_lock);
156
258k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
157
9.64M
            for (auto& it : _que) {
158
9.64M
                if (it.use_count() == 1) {
159
                    // `use_count == 1` means this runtime filter has been released
160
9.64M
                } else if (it->should_be_check_timeout()) {
161
9.42M
                    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
9.34M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
164
9.34M
                        if (ms_since_registration > it->wait_time_ms()) {
165
3.04k
                            it->call_timeout();
166
9.34M
                        } else {
167
9.34M
                            new_que.push_back(std::move(it));
168
9.34M
                        }
169
9.34M
                    }
170
9.42M
                } else {
171
226k
                    new_que.push_back(std::move(it));
172
226k
                }
173
9.64M
            }
174
258k
            new_que.swap(_que);
175
258k
        }
176
258k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
177
258k
    }
178
8
    _shutdown = true;
179
8
}
180
181
330k
void LocalExchangeSharedState::sub_running_sink_operators() {
182
330k
    std::unique_lock<std::mutex> lc(le_lock);
183
330k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
184
113k
        _set_always_ready();
185
113k
    }
186
330k
}
187
188
803k
void LocalExchangeSharedState::sub_running_source_operators() {
189
803k
    std::unique_lock<std::mutex> lc(le_lock);
190
803k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
191
113k
        _set_always_ready();
192
113k
        exchanger->finalize();
193
113k
    }
194
803k
}
195
196
113k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
197
113k
    source_deps.resize(num_instances, nullptr);
198
113k
    mem_counters.resize(num_instances, nullptr);
199
113k
}
200
201
213
MutableColumns AggSharedState::_get_keys_hash_table() {
202
213
    return std::visit(
203
213
            Overload {[&](std::monostate& arg) {
204
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
205
0
                          return MutableColumns();
206
0
                      },
207
213
                      [&](auto&& agg_method) -> MutableColumns {
208
213
                          MutableColumns key_columns;
209
494
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
281
                              key_columns.emplace_back(
211
281
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
281
                          }
213
213
                          auto& data = *agg_method.hash_table;
214
213
                          bool has_null_key = data.has_null_key_data();
215
213
                          const auto size = data.size() - has_null_key;
216
213
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
213
                          std::vector<KeyType> keys(size);
218
219
213
                          uint32_t num_rows = 0;
220
213
                          auto iter = aggregate_data_container->begin();
221
213
                          {
222
51.5k
                              while (iter != aggregate_data_container->end()) {
223
51.3k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
51.3k
                                  ++iter;
225
51.3k
                                  ++num_rows;
226
51.3k
                              }
227
213
                          }
228
213
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
213
                          if (has_null_key) {
230
4
                              key_columns[0]->insert_data(nullptr, 0);
231
4
                          }
232
213
                          return key_columns;
233
213
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
207
22
                      [&](auto&& agg_method) -> MutableColumns {
208
22
                          MutableColumns key_columns;
209
78
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
56
                              key_columns.emplace_back(
211
56
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
56
                          }
213
22
                          auto& data = *agg_method.hash_table;
214
22
                          bool has_null_key = data.has_null_key_data();
215
22
                          const auto size = data.size() - has_null_key;
216
22
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
22
                          std::vector<KeyType> keys(size);
218
219
22
                          uint32_t num_rows = 0;
220
22
                          auto iter = aggregate_data_container->begin();
221
22
                          {
222
23.8k
                              while (iter != aggregate_data_container->end()) {
223
23.8k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
23.8k
                                  ++iter;
225
23.8k
                                  ++num_rows;
226
23.8k
                              }
227
22
                          }
228
22
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
22
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
22
                          return key_columns;
233
22
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Line
Count
Source
207
1
                      [&](auto&& agg_method) -> MutableColumns {
208
1
                          MutableColumns key_columns;
209
2
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
1
                              key_columns.emplace_back(
211
1
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
1
                          }
213
1
                          auto& data = *agg_method.hash_table;
214
1
                          bool has_null_key = data.has_null_key_data();
215
1
                          const auto size = data.size() - has_null_key;
216
1
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
1
                          std::vector<KeyType> keys(size);
218
219
1
                          uint32_t num_rows = 0;
220
1
                          auto iter = aggregate_data_container->begin();
221
1
                          {
222
6
                              while (iter != aggregate_data_container->end()) {
223
5
                                  keys[num_rows] = iter.get_key<KeyType>();
224
5
                                  ++iter;
225
5
                                  ++num_rows;
226
5
                              }
227
1
                          }
228
1
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
1
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
1
                          return key_columns;
233
1
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
8
                      [&](auto&& agg_method) -> MutableColumns {
208
8
                          MutableColumns key_columns;
209
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
8
                              key_columns.emplace_back(
211
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
8
                          }
213
8
                          auto& data = *agg_method.hash_table;
214
8
                          bool has_null_key = data.has_null_key_data();
215
8
                          const auto size = data.size() - has_null_key;
216
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
8
                          std::vector<KeyType> keys(size);
218
219
8
                          uint32_t num_rows = 0;
220
8
                          auto iter = aggregate_data_container->begin();
221
8
                          {
222
17
                              while (iter != aggregate_data_container->end()) {
223
9
                                  keys[num_rows] = iter.get_key<KeyType>();
224
9
                                  ++iter;
225
9
                                  ++num_rows;
226
9
                              }
227
8
                          }
228
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
8
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
8
                          return key_columns;
233
8
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
8
                      [&](auto&& agg_method) -> MutableColumns {
208
8
                          MutableColumns key_columns;
209
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
8
                              key_columns.emplace_back(
211
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
8
                          }
213
8
                          auto& data = *agg_method.hash_table;
214
8
                          bool has_null_key = data.has_null_key_data();
215
8
                          const auto size = data.size() - has_null_key;
216
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
8
                          std::vector<KeyType> keys(size);
218
219
8
                          uint32_t num_rows = 0;
220
8
                          auto iter = aggregate_data_container->begin();
221
8
                          {
222
33
                              while (iter != aggregate_data_container->end()) {
223
25
                                  keys[num_rows] = iter.get_key<KeyType>();
224
25
                                  ++iter;
225
25
                                  ++num_rows;
226
25
                              }
227
8
                          }
228
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
8
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
8
                          return key_columns;
233
8
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
207
3
                      [&](auto&& agg_method) -> MutableColumns {
208
3
                          MutableColumns key_columns;
209
6
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
3
                              key_columns.emplace_back(
211
3
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
3
                          }
213
3
                          auto& data = *agg_method.hash_table;
214
3
                          bool has_null_key = data.has_null_key_data();
215
3
                          const auto size = data.size() - has_null_key;
216
3
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
3
                          std::vector<KeyType> keys(size);
218
219
3
                          uint32_t num_rows = 0;
220
3
                          auto iter = aggregate_data_container->begin();
221
3
                          {
222
39
                              while (iter != aggregate_data_container->end()) {
223
36
                                  keys[num_rows] = iter.get_key<KeyType>();
224
36
                                  ++iter;
225
36
                                  ++num_rows;
226
36
                              }
227
3
                          }
228
3
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
3
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
3
                          return key_columns;
233
3
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
207
6
                      [&](auto&& agg_method) -> MutableColumns {
208
6
                          MutableColumns key_columns;
209
12
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
6
                              key_columns.emplace_back(
211
6
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
6
                          }
213
6
                          auto& data = *agg_method.hash_table;
214
6
                          bool has_null_key = data.has_null_key_data();
215
6
                          const auto size = data.size() - has_null_key;
216
6
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
6
                          std::vector<KeyType> keys(size);
218
219
6
                          uint32_t num_rows = 0;
220
6
                          auto iter = aggregate_data_container->begin();
221
6
                          {
222
4.64k
                              while (iter != aggregate_data_container->end()) {
223
4.63k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
4.63k
                                  ++iter;
225
4.63k
                                  ++num_rows;
226
4.63k
                              }
227
6
                          }
228
6
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
6
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
6
                          return key_columns;
233
6
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
207
6
                      [&](auto&& agg_method) -> MutableColumns {
208
6
                          MutableColumns key_columns;
209
12
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
6
                              key_columns.emplace_back(
211
6
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
6
                          }
213
6
                          auto& data = *agg_method.hash_table;
214
6
                          bool has_null_key = data.has_null_key_data();
215
6
                          const auto size = data.size() - has_null_key;
216
6
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
6
                          std::vector<KeyType> keys(size);
218
219
6
                          uint32_t num_rows = 0;
220
6
                          auto iter = aggregate_data_container->begin();
221
6
                          {
222
4.60k
                              while (iter != aggregate_data_container->end()) {
223
4.59k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
4.59k
                                  ++iter;
225
4.59k
                                  ++num_rows;
226
4.59k
                              }
227
6
                          }
228
6
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
6
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
6
                          return key_columns;
233
6
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
207
62
                      [&](auto&& agg_method) -> MutableColumns {
208
62
                          MutableColumns key_columns;
209
124
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
62
                              key_columns.emplace_back(
211
62
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
62
                          }
213
62
                          auto& data = *agg_method.hash_table;
214
62
                          bool has_null_key = data.has_null_key_data();
215
62
                          const auto size = data.size() - has_null_key;
216
62
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
62
                          std::vector<KeyType> keys(size);
218
219
62
                          uint32_t num_rows = 0;
220
62
                          auto iter = aggregate_data_container->begin();
221
62
                          {
222
5.29k
                              while (iter != aggregate_data_container->end()) {
223
5.23k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
5.23k
                                  ++iter;
225
5.23k
                                  ++num_rows;
226
5.23k
                              }
227
62
                          }
228
62
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
62
                          if (has_null_key) {
230
3
                              key_columns[0]->insert_data(nullptr, 0);
231
3
                          }
232
62
                          return key_columns;
233
62
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
207
43
                      [&](auto&& agg_method) -> MutableColumns {
208
43
                          MutableColumns key_columns;
209
86
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
43
                              key_columns.emplace_back(
211
43
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
43
                          }
213
43
                          auto& data = *agg_method.hash_table;
214
43
                          bool has_null_key = data.has_null_key_data();
215
43
                          const auto size = data.size() - has_null_key;
216
43
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
43
                          std::vector<KeyType> keys(size);
218
219
43
                          uint32_t num_rows = 0;
220
43
                          auto iter = aggregate_data_container->begin();
221
43
                          {
222
5.03k
                              while (iter != aggregate_data_container->end()) {
223
4.98k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
4.98k
                                  ++iter;
225
4.98k
                                  ++num_rows;
226
4.98k
                              }
227
43
                          }
228
43
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
43
                          if (has_null_key) {
230
1
                              key_columns[0]->insert_data(nullptr, 0);
231
1
                          }
232
43
                          return key_columns;
233
43
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Line
Count
Source
207
3
                      [&](auto&& agg_method) -> MutableColumns {
208
3
                          MutableColumns key_columns;
209
6
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
3
                              key_columns.emplace_back(
211
3
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
3
                          }
213
3
                          auto& data = *agg_method.hash_table;
214
3
                          bool has_null_key = data.has_null_key_data();
215
3
                          const auto size = data.size() - has_null_key;
216
3
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
3
                          std::vector<KeyType> keys(size);
218
219
3
                          uint32_t num_rows = 0;
220
3
                          auto iter = aggregate_data_container->begin();
221
3
                          {
222
24
                              while (iter != aggregate_data_container->end()) {
223
21
                                  keys[num_rows] = iter.get_key<KeyType>();
224
21
                                  ++iter;
225
21
                                  ++num_rows;
226
21
                              }
227
3
                          }
228
3
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
3
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
3
                          return key_columns;
233
3
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
Line
Count
Source
207
32
                      [&](auto&& agg_method) -> MutableColumns {
208
32
                          MutableColumns key_columns;
209
64
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
32
                              key_columns.emplace_back(
211
32
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
32
                          }
213
32
                          auto& data = *agg_method.hash_table;
214
32
                          bool has_null_key = data.has_null_key_data();
215
32
                          const auto size = data.size() - has_null_key;
216
32
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
32
                          std::vector<KeyType> keys(size);
218
219
32
                          uint32_t num_rows = 0;
220
32
                          auto iter = aggregate_data_container->begin();
221
32
                          {
222
1.48k
                              while (iter != aggregate_data_container->end()) {
223
1.45k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
1.45k
                                  ++iter;
225
1.45k
                                  ++num_rows;
226
1.45k
                              }
227
32
                          }
228
32
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
32
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
32
                          return key_columns;
233
32
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
207
1
                      [&](auto&& agg_method) -> MutableColumns {
208
1
                          MutableColumns key_columns;
209
3
                          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
1
                          auto& data = *agg_method.hash_table;
214
1
                          bool has_null_key = data.has_null_key_data();
215
1
                          const auto size = data.size() - has_null_key;
216
1
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
1
                          std::vector<KeyType> keys(size);
218
219
1
                          uint32_t num_rows = 0;
220
1
                          auto iter = aggregate_data_container->begin();
221
1
                          {
222
7
                              while (iter != aggregate_data_container->end()) {
223
6
                                  keys[num_rows] = iter.get_key<KeyType>();
224
6
                                  ++iter;
225
6
                                  ++num_rows;
226
6
                              }
227
1
                          }
228
1
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
1
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
1
                          return key_columns;
233
1
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Line
Count
Source
207
18
                      [&](auto&& agg_method) -> MutableColumns {
208
18
                          MutableColumns key_columns;
209
69
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
51
                              key_columns.emplace_back(
211
51
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
51
                          }
213
18
                          auto& data = *agg_method.hash_table;
214
18
                          bool has_null_key = data.has_null_key_data();
215
18
                          const auto size = data.size() - has_null_key;
216
18
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
18
                          std::vector<KeyType> keys(size);
218
219
18
                          uint32_t num_rows = 0;
220
18
                          auto iter = aggregate_data_container->begin();
221
18
                          {
222
6.49k
                              while (iter != aggregate_data_container->end()) {
223
6.47k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
6.47k
                                  ++iter;
225
6.47k
                                  ++num_rows;
226
6.47k
                              }
227
18
                          }
228
18
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
18
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
18
                          return key_columns;
233
18
                      }},
234
213
            agg_data->method_variant);
235
213
}
236
237
213
void AggSharedState::build_limit_heap(size_t hash_table_size) {
238
213
    limit_columns = _get_keys_hash_table();
239
51.0k
    for (size_t i = 0; i < hash_table_size; ++i) {
240
50.8k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
241
50.8k
    }
242
49.9k
    while (hash_table_size > limit) {
243
49.6k
        limit_heap.pop();
244
49.6k
        hash_table_size--;
245
49.6k
    }
246
213
    limit_columns_min = limit_heap.top()._row_id;
247
213
}
248
249
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
250
638
                                     const std::vector<int>* key_locs) {
251
638
    if (num_rows) {
252
638
        cmp_res.resize(num_rows);
253
638
        need_computes.resize(num_rows);
254
638
        memset(need_computes.data(), 0, need_computes.size());
255
638
        memset(cmp_res.data(), 0, cmp_res.size());
256
257
638
        const auto key_size = null_directions.size();
258
1.75k
        for (int i = 0; i < key_size; i++) {
259
1.11k
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
260
1.11k
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
261
1.11k
                                              null_directions[i], order_directions[i], cmp_res,
262
1.11k
                                              need_computes.data());
263
1.11k
        }
264
265
638
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
266
856k
            for (size_t i = 0; i < rows; ++i) {
267
856k
                computes[i] = computes[i] == res[i];
268
856k
            }
269
638
        };
270
638
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
271
272
638
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
273
638
    }
274
275
0
    return false;
276
638
}
277
278
98
Status AggSharedState::reset_hash_table() {
279
98
    return std::visit(
280
98
            Overload {
281
98
                    [&](std::monostate& arg) -> Status {
282
0
                        return Status::InternalError("Uninited hash table");
283
0
                    },
284
98
                    [&](auto& agg_method) {
285
98
                        auto& hash_table = *agg_method.hash_table;
286
98
                        using HashTableType = std::decay_t<decltype(hash_table)>;
287
288
98
                        agg_method.arena.clear();
289
98
                        agg_method.inited_iterator = false;
290
291
98
                        if (!use_simple_count) {
292
1.86M
                            hash_table.for_each_mapped([&](auto& mapped) {
293
1.86M
                                if (mapped) {
294
1.86M
                                    _destroy_agg_status(mapped);
295
1.86M
                                    mapped = nullptr;
296
1.86M
                                }
297
1.86M
                            });
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
292
1.06M
                            hash_table.for_each_mapped([&](auto& mapped) {
293
1.06M
                                if (mapped) {
294
1.06M
                                    _destroy_agg_status(mapped);
295
1.06M
                                    mapped = nullptr;
296
1.06M
                                }
297
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_
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Line
Count
Source
292
400k
                            hash_table.for_each_mapped([&](auto& mapped) {
293
400k
                                if (mapped) {
294
400k
                                    _destroy_agg_status(mapped);
295
400k
                                    mapped = nullptr;
296
400k
                                }
297
400k
                            });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Line
Count
Source
292
400k
                            hash_table.for_each_mapped([&](auto& mapped) {
293
400k
                                if (mapped) {
294
400k
                                    _destroy_agg_status(mapped);
295
400k
                                    mapped = nullptr;
296
400k
                                }
297
400k
                            });
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_
298
299
98
                            if (hash_table.has_null_key_data()) {
300
2
                                _destroy_agg_status(
301
2
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
302
2
                            }
303
304
98
                            aggregate_data_container.reset(new AggregateDataContainer(
305
98
                                    sizeof(typename HashTableType::key_type),
306
98
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
307
98
                                     align_aggregate_states) *
308
98
                                            align_aggregate_states));
309
98
                        }
310
98
                        agg_method.hash_table.reset(new HashTableType());
311
98
                        return Status::OK();
312
98
                    }},
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
284
52
                    [&](auto& agg_method) {
285
52
                        auto& hash_table = *agg_method.hash_table;
286
52
                        using HashTableType = std::decay_t<decltype(hash_table)>;
287
288
52
                        agg_method.arena.clear();
289
52
                        agg_method.inited_iterator = false;
290
291
52
                        if (!use_simple_count) {
292
52
                            hash_table.for_each_mapped([&](auto& mapped) {
293
52
                                if (mapped) {
294
52
                                    _destroy_agg_status(mapped);
295
52
                                    mapped = nullptr;
296
52
                                }
297
52
                            });
298
299
52
                            if (hash_table.has_null_key_data()) {
300
0
                                _destroy_agg_status(
301
0
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
302
0
                            }
303
304
52
                            aggregate_data_container.reset(new AggregateDataContainer(
305
52
                                    sizeof(typename HashTableType::key_type),
306
52
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
307
52
                                     align_aggregate_states) *
308
52
                                            align_aggregate_states));
309
52
                        }
310
52
                        agg_method.hash_table.reset(new HashTableType());
311
52
                        return Status::OK();
312
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_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_
Line
Count
Source
284
22
                    [&](auto& agg_method) {
285
22
                        auto& hash_table = *agg_method.hash_table;
286
22
                        using HashTableType = std::decay_t<decltype(hash_table)>;
287
288
22
                        agg_method.arena.clear();
289
22
                        agg_method.inited_iterator = false;
290
291
22
                        if (!use_simple_count) {
292
22
                            hash_table.for_each_mapped([&](auto& mapped) {
293
22
                                if (mapped) {
294
22
                                    _destroy_agg_status(mapped);
295
22
                                    mapped = nullptr;
296
22
                                }
297
22
                            });
298
299
22
                            if (hash_table.has_null_key_data()) {
300
0
                                _destroy_agg_status(
301
0
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
302
0
                            }
303
304
22
                            aggregate_data_container.reset(new AggregateDataContainer(
305
22
                                    sizeof(typename HashTableType::key_type),
306
22
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
307
22
                                     align_aggregate_states) *
308
22
                                            align_aggregate_states));
309
22
                        }
310
22
                        agg_method.hash_table.reset(new HashTableType());
311
22
                        return Status::OK();
312
22
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_
Line
Count
Source
284
24
                    [&](auto& agg_method) {
285
24
                        auto& hash_table = *agg_method.hash_table;
286
24
                        using HashTableType = std::decay_t<decltype(hash_table)>;
287
288
24
                        agg_method.arena.clear();
289
24
                        agg_method.inited_iterator = false;
290
291
24
                        if (!use_simple_count) {
292
24
                            hash_table.for_each_mapped([&](auto& mapped) {
293
24
                                if (mapped) {
294
24
                                    _destroy_agg_status(mapped);
295
24
                                    mapped = nullptr;
296
24
                                }
297
24
                            });
298
299
24
                            if (hash_table.has_null_key_data()) {
300
2
                                _destroy_agg_status(
301
2
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
302
2
                            }
303
304
24
                            aggregate_data_container.reset(new AggregateDataContainer(
305
24
                                    sizeof(typename HashTableType::key_type),
306
24
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
307
24
                                     align_aggregate_states) *
308
24
                                            align_aggregate_states));
309
24
                        }
310
24
                        agg_method.hash_table.reset(new HashTableType());
311
24
                        return Status::OK();
312
24
                    }},
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_
313
98
            agg_data->method_variant);
314
98
}
315
316
1.41k
void PartitionedAggSharedState::close() {
317
1.41k
    for (auto& partition : _spill_partitions) {
318
32
        if (partition) {
319
4
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
320
4
        }
321
32
    }
322
1.41k
    _spill_partitions.clear();
323
1.41k
}
324
325
39
void SpillSortSharedState::close() {
326
    // need to use CAS instead of only `if (!is_closed)` statement,
327
    // to avoid concurrent entry of close() both pass the if statement
328
39
    bool false_close = false;
329
39
    if (!is_closed.compare_exchange_strong(false_close, true)) {
330
14
        return;
331
14
    }
332
39
    DCHECK(!false_close && is_closed);
333
25
    sorted_spill_groups.clear();
334
25
}
335
336
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
337
        : multi_cast_data_streamer(
338
4.06k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
339
340
143k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
341
143k
    auto ctxs = evaluator->input_exprs_ctxs();
342
18.4E
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
343
18.4E
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
344
18.4E
            << ctxs[0]->root()->debug_string();
345
143k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
346
143k
}
347
348
4.57M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
349
11.3M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
350
6.80M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
351
6.80M
    }
352
4.57M
}
353
354
113k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
355
356
13.2k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
357
13.2k
    if (ctxs.size() > build_not_ignore_null.size()) {
358
0
        return Status::InternalError("build_not_ignore_null not initialized");
359
0
    }
360
361
103k
    for (int i = 0; i < ctxs.size(); ++i) {
362
90.4k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
363
90.4k
    }
364
365
13.2k
    return Status::OK();
366
13.2k
}
367
368
21.3k
size_t SetSharedState::get_hash_table_size() const {
369
21.3k
    size_t hash_table_size = 0;
370
21.3k
    std::visit(
371
21.3k
            [&](auto&& arg) {
372
21.3k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
21.3k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
21.3k
                    hash_table_size = arg.hash_table->size();
375
21.3k
                }
376
21.3k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
371
18.1k
            [&](auto&& arg) {
372
18.1k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
18.1k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
18.1k
                    hash_table_size = arg.hash_table->size();
375
18.1k
                }
376
18.1k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
371
329
            [&](auto&& arg) {
372
329
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
329
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
329
                    hash_table_size = arg.hash_table->size();
375
329
                }
376
329
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
371
469
            [&](auto&& arg) {
372
469
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
469
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
469
                    hash_table_size = arg.hash_table->size();
375
469
                }
376
469
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
371
72
            [&](auto&& arg) {
372
72
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
72
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
72
                    hash_table_size = arg.hash_table->size();
375
72
                }
376
72
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
371
1.53k
            [&](auto&& arg) {
372
1.53k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
1.53k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
1.53k
                    hash_table_size = arg.hash_table->size();
375
1.53k
                }
376
1.53k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
371
343
            [&](auto&& arg) {
372
343
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
343
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
343
                    hash_table_size = arg.hash_table->size();
375
343
                }
376
343
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
371
60
            [&](auto&& arg) {
372
60
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
60
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
60
                    hash_table_size = arg.hash_table->size();
375
60
                }
376
60
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_
Line
Count
Source
371
96
            [&](auto&& arg) {
372
96
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
96
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
96
                    hash_table_size = arg.hash_table->size();
375
96
                }
376
96
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
371
30
            [&](auto&& arg) {
372
30
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
30
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
30
                    hash_table_size = arg.hash_table->size();
375
30
                }
376
30
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
371
28
            [&](auto&& arg) {
372
28
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
28
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
28
                    hash_table_size = arg.hash_table->size();
375
28
                }
376
28
            },
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_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
371
129
            [&](auto&& arg) {
372
129
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
129
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
129
                    hash_table_size = arg.hash_table->size();
375
129
                }
376
129
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
371
42
            [&](auto&& arg) {
372
42
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
42
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
42
                    hash_table_size = arg.hash_table->size();
375
42
                }
376
42
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
371
36
            [&](auto&& arg) {
372
36
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
36
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
36
                    hash_table_size = arg.hash_table->size();
375
36
                }
376
36
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
371
18
            [&](auto&& arg) {
372
18
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
18
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
18
                    hash_table_size = arg.hash_table->size();
375
18
                }
376
18
            },
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
371
4
            [&](auto&& arg) {
372
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
4
                    hash_table_size = arg.hash_table->size();
375
4
                }
376
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
371
14
            [&](auto&& arg) {
372
14
                using HashTableCtxType = std::decay_t<decltype(arg)>;
373
14
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
374
14
                    hash_table_size = arg.hash_table->size();
375
14
                }
376
14
            },
377
21.3k
            hash_table_variants->method_variant);
378
21.3k
    return hash_table_size;
379
21.3k
}
380
381
5.39k
Status SetSharedState::hash_table_init() {
382
5.39k
    std::vector<DataTypePtr> data_types;
383
41.6k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
384
36.2k
        auto& ctx = child_exprs_lists[0][i];
385
36.2k
        auto data_type = ctx->root()->data_type();
386
36.2k
        if (build_not_ignore_null[i]) {
387
35.9k
            data_type = make_nullable(data_type);
388
35.9k
        }
389
36.2k
        data_types.emplace_back(std::move(data_type));
390
36.2k
    }
391
5.39k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
392
5.39k
}
393
394
3.86k
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
395
8.06k
    for (int j = 0; j < key_columns.size(); ++j) {
396
4.20k
        limit_columns[j]->insert_from(*key_columns[j], row_id);
397
4.20k
    }
398
3.86k
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
399
3.86k
                       null_directions);
400
401
3.86k
    limit_heap.pop();
402
3.86k
    limit_columns_min = limit_heap.top()._row_id;
403
3.86k
}
404
405
} // namespace doris