Coverage Report

Created: 2026-07-17 15:05

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
34
Dependency* BasicSharedState::create_source_dependency(int operator_id, int node_id,
35
512k
                                                       const std::string& name) {
36
512k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
512k
    source_deps.back()->set_shared_state(this);
38
512k
    return source_deps.back().get();
39
512k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
117k
                                                  const std::string& name) {
43
117k
    source_deps.resize(num_sources, nullptr);
44
782k
    for (auto& source_dep : source_deps) {
45
782k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
782k
        source_dep->set_shared_state(this);
47
782k
    }
48
117k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
1.15M
                                                     const std::string& name) {
52
1.15M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
1.15M
    sink_deps.back()->set_shared_state(this);
54
1.15M
    return sink_deps.back().get();
55
1.15M
}
56
57
5.16M
void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) {
58
18.4E
    DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr ||
59
18.4E
           _blocked_task[_blocked_task.size() - 1].lock().get() != task.get())
60
18.4E
            << "Duplicate task: " << task->debug_string();
61
5.16M
    _blocked_task.push_back(task);
62
5.16M
}
63
64
47.7M
void Dependency::set_ready() {
65
47.7M
    if (_ready) {
66
43.6M
        return;
67
43.6M
    }
68
4.09M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
4.09M
    {
70
4.09M
        std::unique_lock<std::mutex> lc(_task_lock);
71
4.09M
        if (_ready) {
72
104
            return;
73
104
        }
74
4.09M
        _watcher.stop();
75
4.09M
        _ready = true;
76
4.09M
        local_block_task.swap(_blocked_task);
77
4.09M
    }
78
5.18M
    for (auto task : local_block_task) {
79
5.18M
        if (auto t = task.lock()) {
80
5.17M
            std::unique_lock<std::mutex> lc(_task_lock);
81
5.17M
            t->wake_up(this, lc);
82
5.17M
        }
83
5.18M
    }
84
4.09M
}
85
86
40.9M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
40.9M
    std::unique_lock<std::mutex> lc(_task_lock);
88
40.9M
    auto ready = _ready.load();
89
40.9M
    if (!ready && task) {
90
5.17M
        _add_block_task(task);
91
5.17M
        start_watcher();
92
5.17M
        THROW_IF_ERROR(task->blocked(this, lc));
93
5.17M
    }
94
40.9M
    return ready ? nullptr : this;
95
40.9M
}
96
97
117k
std::string Dependency::debug_string(int indentation_level) {
98
117k
    fmt::memory_buffer debug_string_buffer;
99
117k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
100
117k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
101
117k
                   _ready, _always_ready);
102
117k
    return fmt::to_string(debug_string_buffer);
103
117k
}
104
105
8
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
8
    fmt::memory_buffer debug_string_buffer;
107
8
    fmt::format_to(debug_string_buffer,
108
8
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
8
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
8
                   _ready, _always_ready, _counter);
111
8
    return fmt::to_string(debug_string_buffer);
112
8
}
113
114
665
void RuntimeFilterTimer::call_timeout() {
115
665
    _parent->set_ready();
116
665
}
117
118
15.2k
void RuntimeFilterTimer::call_ready() {
119
15.2k
    _parent->set_ready();
120
15.2k
}
121
122
// should check rf timeout in two case:
123
// 1. the rf is ready just remove the wait queue
124
// 2. if the rf have local dependency, the rf should start wait when all local dependency is ready
125
1.20M
bool RuntimeFilterTimer::should_be_check_timeout() {
126
1.20M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
8.84k
        bool all_ready = true;
128
8.88k
        for (auto& dep : _local_runtime_filter_dependencies) {
129
8.88k
            if (!dep->ready()) {
130
8.80k
                all_ready = false;
131
8.80k
                break;
132
8.80k
            }
133
8.88k
        }
134
8.84k
        if (all_ready) {
135
42
            _local_runtime_filter_dependencies.clear();
136
42
            _registration_time = MonotonicMillis();
137
42
        }
138
8.84k
        return all_ready;
139
8.84k
    }
140
1.19M
    return true;
141
1.20M
}
142
143
7
void RuntimeFilterTimerQueue::start() {
144
124k
    while (!_stop) {
145
124k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
132k
        while (_que.empty() && !_stop) {
148
15.7k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
7.86k
        }
150
124k
        if (_stop) {
151
1
            break;
152
1
        }
153
124k
        {
154
124k
            std::unique_lock<std::mutex> lc(_que_lock);
155
124k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
1.20M
            for (auto& it : _que) {
157
1.20M
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
1.20M
                } else if (it->should_be_check_timeout()) {
160
1.19M
                    if (it->force_wait_timeout() || it->_parent->is_blocked_by()) {
161
                        // This means runtime filter is not ready, so we call timeout or continue to poll this timer.
162
1.17M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
1.17M
                        if (ms_since_registration > it->wait_time_ms()) {
164
665
                            it->call_timeout();
165
1.17M
                        } else {
166
1.17M
                            new_que.push_back(std::move(it));
167
1.17M
                        }
168
1.17M
                    }
169
1.19M
                } else {
170
8.80k
                    new_que.push_back(std::move(it));
171
8.80k
                }
172
1.20M
            }
173
124k
            new_que.swap(_que);
174
124k
        }
175
124k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
124k
    }
177
7
    _shutdown = true;
178
7
}
179
180
259k
void LocalExchangeSharedState::sub_running_sink_operators() {
181
259k
    std::unique_lock<std::mutex> lc(le_lock);
182
259k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
183
112k
        _set_always_ready();
184
112k
    }
185
259k
}
186
187
761k
void LocalExchangeSharedState::sub_running_source_operators() {
188
761k
    std::unique_lock<std::mutex> lc(le_lock);
189
761k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
112k
        _set_always_ready();
191
112k
        exchanger->finalize();
192
112k
    }
193
761k
}
194
195
112k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
112k
    source_deps.resize(num_instances, nullptr);
197
112k
    mem_counters.resize(num_instances, nullptr);
198
112k
}
199
200
134
MutableColumns AggSharedState::_get_keys_hash_table() {
201
134
    return std::visit(
202
134
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
134
                      [&](auto&& agg_method) -> MutableColumns {
207
134
                          MutableColumns key_columns;
208
383
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
249
                              key_columns.emplace_back(
210
249
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
249
                          }
212
134
                          auto& data = *agg_method.hash_table;
213
134
                          bool has_null_key = data.has_null_key_data();
214
134
                          const auto size = data.size() - has_null_key;
215
134
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
134
                          std::vector<KeyType> keys(size);
217
218
134
                          uint32_t num_rows = 0;
219
134
                          auto iter = aggregate_data_container->begin();
220
134
                          {
221
52.4k
                              while (iter != aggregate_data_container->end()) {
222
52.2k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
52.2k
                                  ++iter;
224
52.2k
                                  ++num_rows;
225
52.2k
                              }
226
134
                          }
227
134
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
134
                          if (has_null_key) {
229
2
                              key_columns[0]->insert_data(nullptr, 0);
230
2
                          }
231
134
                          return key_columns;
232
134
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
18
                      [&](auto&& agg_method) -> MutableColumns {
207
18
                          MutableColumns key_columns;
208
74
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
56
                              key_columns.emplace_back(
210
56
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
56
                          }
212
18
                          auto& data = *agg_method.hash_table;
213
18
                          bool has_null_key = data.has_null_key_data();
214
18
                          const auto size = data.size() - has_null_key;
215
18
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
18
                          std::vector<KeyType> keys(size);
217
218
18
                          uint32_t num_rows = 0;
219
18
                          auto iter = aggregate_data_container->begin();
220
18
                          {
221
20.3k
                              while (iter != aggregate_data_container->end()) {
222
20.3k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
20.3k
                                  ++iter;
224
20.3k
                                  ++num_rows;
225
20.3k
                              }
226
18
                          }
227
18
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
18
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
18
                          return key_columns;
232
18
                      }},
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
206
6
                      [&](auto&& agg_method) -> MutableColumns {
207
6
                          MutableColumns key_columns;
208
12
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
6
                              key_columns.emplace_back(
210
6
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
6
                          }
212
6
                          auto& data = *agg_method.hash_table;
213
6
                          bool has_null_key = data.has_null_key_data();
214
6
                          const auto size = data.size() - has_null_key;
215
6
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
6
                          std::vector<KeyType> keys(size);
217
218
6
                          uint32_t num_rows = 0;
219
6
                          auto iter = aggregate_data_container->begin();
220
6
                          {
221
25
                              while (iter != aggregate_data_container->end()) {
222
19
                                  keys[num_rows] = iter.get_key<KeyType>();
223
19
                                  ++iter;
224
19
                                  ++num_rows;
225
19
                              }
226
6
                          }
227
6
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
6
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
6
                          return key_columns;
232
6
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
7
                      [&](auto&& agg_method) -> MutableColumns {
207
7
                          MutableColumns key_columns;
208
14
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
7
                              key_columns.emplace_back(
210
7
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
7
                          }
212
7
                          auto& data = *agg_method.hash_table;
213
7
                          bool has_null_key = data.has_null_key_data();
214
7
                          const auto size = data.size() - has_null_key;
215
7
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
7
                          std::vector<KeyType> keys(size);
217
218
7
                          uint32_t num_rows = 0;
219
7
                          auto iter = aggregate_data_container->begin();
220
7
                          {
221
91
                              while (iter != aggregate_data_container->end()) {
222
84
                                  keys[num_rows] = iter.get_key<KeyType>();
223
84
                                  ++iter;
224
84
                                  ++num_rows;
225
84
                              }
226
7
                          }
227
7
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
7
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
7
                          return key_columns;
232
7
                      }},
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
206
14
                      [&](auto&& agg_method) -> MutableColumns {
207
14
                          MutableColumns key_columns;
208
28
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
14
                              key_columns.emplace_back(
210
14
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
14
                          }
212
14
                          auto& data = *agg_method.hash_table;
213
14
                          bool has_null_key = data.has_null_key_data();
214
14
                          const auto size = data.size() - has_null_key;
215
14
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
14
                          std::vector<KeyType> keys(size);
217
218
14
                          uint32_t num_rows = 0;
219
14
                          auto iter = aggregate_data_container->begin();
220
14
                          {
221
8.37k
                              while (iter != aggregate_data_container->end()) {
222
8.35k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.35k
                                  ++iter;
224
8.35k
                                  ++num_rows;
225
8.35k
                              }
226
14
                          }
227
14
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
14
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
14
                          return key_columns;
232
14
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
14
                      [&](auto&& agg_method) -> MutableColumns {
207
14
                          MutableColumns key_columns;
208
28
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
14
                              key_columns.emplace_back(
210
14
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
14
                          }
212
14
                          auto& data = *agg_method.hash_table;
213
14
                          bool has_null_key = data.has_null_key_data();
214
14
                          const auto size = data.size() - has_null_key;
215
14
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
14
                          std::vector<KeyType> keys(size);
217
218
14
                          uint32_t num_rows = 0;
219
14
                          auto iter = aggregate_data_container->begin();
220
14
                          {
221
8.38k
                              while (iter != aggregate_data_container->end()) {
222
8.37k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.37k
                                  ++iter;
224
8.37k
                                  ++num_rows;
225
8.37k
                              }
226
14
                          }
227
14
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
14
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
14
                          return key_columns;
232
14
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
7
                      [&](auto&& agg_method) -> MutableColumns {
207
7
                          MutableColumns key_columns;
208
14
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
7
                              key_columns.emplace_back(
210
7
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
7
                          }
212
7
                          auto& data = *agg_method.hash_table;
213
7
                          bool has_null_key = data.has_null_key_data();
214
7
                          const auto size = data.size() - has_null_key;
215
7
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
7
                          std::vector<KeyType> keys(size);
217
218
7
                          uint32_t num_rows = 0;
219
7
                          auto iter = aggregate_data_container->begin();
220
7
                          {
221
19
                              while (iter != aggregate_data_container->end()) {
222
12
                                  keys[num_rows] = iter.get_key<KeyType>();
223
12
                                  ++iter;
224
12
                                  ++num_rows;
225
12
                              }
226
7
                          }
227
7
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
7
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
7
                          return key_columns;
232
7
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
3
                      [&](auto&& agg_method) -> MutableColumns {
207
3
                          MutableColumns key_columns;
208
6
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
3
                              key_columns.emplace_back(
210
3
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
3
                          }
212
3
                          auto& data = *agg_method.hash_table;
213
3
                          bool has_null_key = data.has_null_key_data();
214
3
                          const auto size = data.size() - has_null_key;
215
3
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
3
                          std::vector<KeyType> keys(size);
217
218
3
                          uint32_t num_rows = 0;
219
3
                          auto iter = aggregate_data_container->begin();
220
3
                          {
221
17
                              while (iter != aggregate_data_container->end()) {
222
14
                                  keys[num_rows] = iter.get_key<KeyType>();
223
14
                                  ++iter;
224
14
                                  ++num_rows;
225
14
                              }
226
3
                          }
227
3
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
3
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
3
                          return key_columns;
232
3
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Line
Count
Source
206
7
                      [&](auto&& agg_method) -> MutableColumns {
207
7
                          MutableColumns key_columns;
208
14
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
7
                              key_columns.emplace_back(
210
7
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
7
                          }
212
7
                          auto& data = *agg_method.hash_table;
213
7
                          bool has_null_key = data.has_null_key_data();
214
7
                          const auto size = data.size() - has_null_key;
215
7
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
7
                          std::vector<KeyType> keys(size);
217
218
7
                          uint32_t num_rows = 0;
219
7
                          auto iter = aggregate_data_container->begin();
220
7
                          {
221
56
                              while (iter != aggregate_data_container->end()) {
222
49
                                  keys[num_rows] = iter.get_key<KeyType>();
223
49
                                  ++iter;
224
49
                                  ++num_rows;
225
49
                              }
226
7
                          }
227
7
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
7
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
7
                          return key_columns;
232
7
                      }},
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
206
16
                      [&](auto&& agg_method) -> MutableColumns {
207
16
                          MutableColumns key_columns;
208
32
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
16
                              key_columns.emplace_back(
210
16
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
16
                          }
212
16
                          auto& data = *agg_method.hash_table;
213
16
                          bool has_null_key = data.has_null_key_data();
214
16
                          const auto size = data.size() - has_null_key;
215
16
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
16
                          std::vector<KeyType> keys(size);
217
218
16
                          uint32_t num_rows = 0;
219
16
                          auto iter = aggregate_data_container->begin();
220
16
                          {
221
742
                              while (iter != aggregate_data_container->end()) {
222
726
                                  keys[num_rows] = iter.get_key<KeyType>();
223
726
                                  ++iter;
224
726
                                  ++num_rows;
225
726
                              }
226
16
                          }
227
16
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
16
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
16
                          return key_columns;
232
16
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Line
Count
Source
206
42
                      [&](auto&& agg_method) -> MutableColumns {
207
42
                          MutableColumns key_columns;
208
161
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
119
                              key_columns.emplace_back(
210
119
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
119
                          }
212
42
                          auto& data = *agg_method.hash_table;
213
42
                          bool has_null_key = data.has_null_key_data();
214
42
                          const auto size = data.size() - has_null_key;
215
42
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
42
                          std::vector<KeyType> keys(size);
217
218
42
                          uint32_t num_rows = 0;
219
42
                          auto iter = aggregate_data_container->begin();
220
42
                          {
221
14.3k
                              while (iter != aggregate_data_container->end()) {
222
14.3k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
14.3k
                                  ++iter;
224
14.3k
                                  ++num_rows;
225
14.3k
                              }
226
42
                          }
227
42
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
42
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
42
                          return key_columns;
232
42
                      }},
233
134
            agg_data->method_variant);
234
134
}
235
236
134
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
134
    limit_columns = _get_keys_hash_table();
238
52.2k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
52.1k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
52.1k
    }
241
51.7k
    while (hash_table_size > limit) {
242
51.5k
        limit_heap.pop();
243
51.5k
        hash_table_size--;
244
51.5k
    }
245
134
    limit_columns_min = limit_heap.top()._row_id;
246
134
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
490
                                     const std::vector<int>* key_locs) {
250
490
    if (num_rows) {
251
490
        cmp_res.resize(num_rows);
252
490
        need_computes.resize(num_rows);
253
490
        memset(need_computes.data(), 0, need_computes.size());
254
490
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
490
        const auto key_size = null_directions.size();
257
1.47k
        for (int i = 0; i < key_size; i++) {
258
983
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
983
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
983
                                              null_directions[i], order_directions[i], cmp_res,
261
983
                                              need_computes.data());
262
983
        }
263
264
490
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
678k
            for (size_t i = 0; i < rows; ++i) {
266
677k
                computes[i] = computes[i] == res[i];
267
677k
            }
268
490
        };
269
490
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
490
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
490
    }
273
274
0
    return false;
275
490
}
276
277
140
Status AggSharedState::reset_hash_table() {
278
140
    return std::visit(
279
140
            Overload {
280
140
                    [&](std::monostate& arg) -> Status {
281
0
                        return Status::InternalError("Uninited hash table");
282
0
                    },
283
140
                    [&](auto& agg_method) {
284
140
                        auto& hash_table = *agg_method.hash_table;
285
140
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
140
                        agg_method.arena.clear();
288
140
                        agg_method.inited_iterator = false;
289
290
140
                        if (!use_simple_count) {
291
2.09M
                            hash_table.for_each_mapped([&](auto& mapped) {
292
2.09M
                                if (mapped) {
293
2.09M
                                    _destroy_agg_status(mapped);
294
2.09M
                                    mapped = nullptr;
295
2.09M
                                }
296
2.09M
                            });
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
291
1.06M
                            hash_table.for_each_mapped([&](auto& mapped) {
292
1.06M
                                if (mapped) {
293
1.06M
                                    _destroy_agg_status(mapped);
294
1.06M
                                    mapped = nullptr;
295
1.06M
                                }
296
1.06M
                            });
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_
Line
Count
Source
291
285k
                            hash_table.for_each_mapped([&](auto& mapped) {
292
285k
                                if (mapped) {
293
285k
                                    _destroy_agg_status(mapped);
294
285k
                                    mapped = nullptr;
295
285k
                                }
296
285k
                            });
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_
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Line
Count
Source
291
244k
                            hash_table.for_each_mapped([&](auto& mapped) {
292
244k
                                if (mapped) {
293
244k
                                    _destroy_agg_status(mapped);
294
244k
                                    mapped = nullptr;
295
244k
                                }
296
244k
                            });
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_
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Line
Count
Source
291
494k
                            hash_table.for_each_mapped([&](auto& mapped) {
292
494k
                                if (mapped) {
293
494k
                                    _destroy_agg_status(mapped);
294
494k
                                    mapped = nullptr;
295
494k
                                }
296
494k
                            });
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_
297
298
140
                            if (hash_table.has_null_key_data()) {
299
2
                                _destroy_agg_status(
300
2
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
301
2
                            }
302
303
140
                            aggregate_data_container.reset(new AggregateDataContainer(
304
140
                                    sizeof(typename HashTableType::key_type),
305
140
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
140
                                     align_aggregate_states) *
307
140
                                            align_aggregate_states));
308
140
                        }
309
140
                        agg_method.hash_table.reset(new HashTableType());
310
140
                        return Status::OK();
311
140
                    }},
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
                        if (!use_simple_count) {
291
52
                            hash_table.for_each_mapped([&](auto& mapped) {
292
52
                                if (mapped) {
293
52
                                    _destroy_agg_status(mapped);
294
52
                                    mapped = nullptr;
295
52
                                }
296
52
                            });
297
298
52
                            if (hash_table.has_null_key_data()) {
299
0
                                _destroy_agg_status(
300
0
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
301
0
                            }
302
303
52
                            aggregate_data_container.reset(new AggregateDataContainer(
304
52
                                    sizeof(typename HashTableType::key_type),
305
52
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
52
                                     align_aggregate_states) *
307
52
                                            align_aggregate_states));
308
52
                        }
309
52
                        agg_method.hash_table.reset(new HashTableType());
310
52
                        return Status::OK();
311
52
                    }},
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_
Line
Count
Source
283
18
                    [&](auto& agg_method) {
284
18
                        auto& hash_table = *agg_method.hash_table;
285
18
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
18
                        agg_method.arena.clear();
288
18
                        agg_method.inited_iterator = false;
289
290
18
                        if (!use_simple_count) {
291
18
                            hash_table.for_each_mapped([&](auto& mapped) {
292
18
                                if (mapped) {
293
18
                                    _destroy_agg_status(mapped);
294
18
                                    mapped = nullptr;
295
18
                                }
296
18
                            });
297
298
18
                            if (hash_table.has_null_key_data()) {
299
0
                                _destroy_agg_status(
300
0
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
301
0
                            }
302
303
18
                            aggregate_data_container.reset(new AggregateDataContainer(
304
18
                                    sizeof(typename HashTableType::key_type),
305
18
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
18
                                     align_aggregate_states) *
307
18
                                            align_aggregate_states));
308
18
                        }
309
18
                        agg_method.hash_table.reset(new HashTableType());
310
18
                        return Status::OK();
311
18
                    }},
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
19
                    [&](auto& agg_method) {
284
19
                        auto& hash_table = *agg_method.hash_table;
285
19
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
19
                        agg_method.arena.clear();
288
19
                        agg_method.inited_iterator = false;
289
290
19
                        if (!use_simple_count) {
291
19
                            hash_table.for_each_mapped([&](auto& mapped) {
292
19
                                if (mapped) {
293
19
                                    _destroy_agg_status(mapped);
294
19
                                    mapped = nullptr;
295
19
                                }
296
19
                            });
297
298
19
                            if (hash_table.has_null_key_data()) {
299
2
                                _destroy_agg_status(
300
2
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
301
2
                            }
302
303
19
                            aggregate_data_container.reset(new AggregateDataContainer(
304
19
                                    sizeof(typename HashTableType::key_type),
305
19
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
19
                                     align_aggregate_states) *
307
19
                                            align_aggregate_states));
308
19
                        }
309
19
                        agg_method.hash_table.reset(new HashTableType());
310
19
                        return Status::OK();
311
19
                    }},
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_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_
Line
Count
Source
283
51
                    [&](auto& agg_method) {
284
51
                        auto& hash_table = *agg_method.hash_table;
285
51
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
51
                        agg_method.arena.clear();
288
51
                        agg_method.inited_iterator = false;
289
290
51
                        if (!use_simple_count) {
291
51
                            hash_table.for_each_mapped([&](auto& mapped) {
292
51
                                if (mapped) {
293
51
                                    _destroy_agg_status(mapped);
294
51
                                    mapped = nullptr;
295
51
                                }
296
51
                            });
297
298
51
                            if (hash_table.has_null_key_data()) {
299
0
                                _destroy_agg_status(
300
0
                                        hash_table.template get_null_key_data<AggregateDataPtr>());
301
0
                            }
302
303
51
                            aggregate_data_container.reset(new AggregateDataContainer(
304
51
                                    sizeof(typename HashTableType::key_type),
305
51
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
51
                                     align_aggregate_states) *
307
51
                                            align_aggregate_states));
308
51
                        }
309
51
                        agg_method.hash_table.reset(new HashTableType());
310
51
                        return Status::OK();
311
51
                    }},
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_
312
140
            agg_data->method_variant);
313
140
}
314
315
1.75k
void PartitionedAggSharedState::close() {
316
1.75k
    bool false_close = false;
317
1.75k
    if (!is_closed.compare_exchange_strong(false_close, true)) {
318
11
        return;
319
11
    }
320
321
1.74k
    for (auto& partition : _spill_partitions) {
322
84
        if (partition) {
323
31
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
324
31
        }
325
84
    }
326
1.74k
    _spill_partitions.clear();
327
1.74k
}
328
329
10.1k
void SpillSortSharedState::close() {
330
    // need to use CAS instead of only `if (!is_closed)` statement,
331
    // to avoid concurrent entry of close() both pass the if statement
332
10.1k
    bool false_close = false;
333
10.1k
    if (!is_closed.compare_exchange_strong(false_close, true)) {
334
5.15k
        return;
335
5.15k
    }
336
10.1k
    DCHECK(!false_close && is_closed);
337
4.97k
    sorted_spill_groups.clear();
338
4.97k
}
339
340
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
341
        : multi_cast_data_streamer(
342
4.01k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
343
344
46.6k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
345
46.6k
    auto ctxs = evaluator->input_exprs_ctxs();
346
46.6k
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
347
8
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
348
8
            << ctxs[0]->root()->debug_string();
349
46.6k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
350
46.6k
}
351
352
7.84M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
353
20.4M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
354
12.6M
        aggregate_evaluators[i]->destroy(data + offsets_of_aggregate_states[i]);
355
12.6M
    }
356
7.84M
}
357
358
30.7k
void BucketedAggSharedState::_destroy_agg_status(AggregateDataPtr data) {
359
30.7k
    DCHECK(!use_simple_count) << "should not call _destroy_agg_status when use_simple_count";
360
61.7k
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
361
30.9k
        aggregate_evaluators[i]->destroy(data + offsets_of_aggregate_states[i]);
362
30.9k
    }
363
30.7k
}
364
365
112k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
366
367
12.6k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
368
12.6k
    if (ctxs.size() > build_not_ignore_null.size()) {
369
0
        return Status::InternalError("build_not_ignore_null not initialized");
370
0
    }
371
372
100k
    for (int i = 0; i < ctxs.size(); ++i) {
373
88.2k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
374
88.2k
    }
375
376
12.6k
    return Status::OK();
377
12.6k
}
378
379
15.2k
size_t SetSharedState::get_hash_table_size() const {
380
15.2k
    size_t hash_table_size = 0;
381
15.2k
    std::visit(
382
15.3k
            [&](auto&& arg) {
383
15.3k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
15.3k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
15.3k
                    hash_table_size = arg.hash_table->size();
386
15.3k
                }
387
15.3k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
382
13.0k
            [&](auto&& arg) {
383
13.0k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
13.0k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
13.0k
                    hash_table_size = arg.hash_table->size();
386
13.0k
                }
387
13.0k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
382
62
            [&](auto&& arg) {
383
62
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
62
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
62
                    hash_table_size = arg.hash_table->size();
386
62
                }
387
62
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
382
124
            [&](auto&& arg) {
383
124
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
124
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
124
                    hash_table_size = arg.hash_table->size();
386
124
                }
387
124
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
382
22
            [&](auto&& arg) {
383
22
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
22
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
22
                    hash_table_size = arg.hash_table->size();
386
22
                }
387
22
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
Line
Count
Source
382
8
            [&](auto&& arg) {
383
8
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
8
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
8
                    hash_table_size = arg.hash_table->size();
386
8
                }
387
8
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
382
1.23k
            [&](auto&& arg) {
383
1.23k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
1.23k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
1.23k
                    hash_table_size = arg.hash_table->size();
386
1.23k
                }
387
1.23k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
382
44
            [&](auto&& arg) {
383
44
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
44
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
44
                    hash_table_size = arg.hash_table->size();
386
44
                }
387
44
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
382
64
            [&](auto&& arg) {
383
64
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
64
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
64
                    hash_table_size = arg.hash_table->size();
386
64
                }
387
64
            },
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
382
2
            [&](auto&& arg) {
383
2
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
2
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
2
                    hash_table_size = arg.hash_table->size();
386
2
                }
387
2
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
Line
Count
Source
382
6
            [&](auto&& arg) {
383
6
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
6
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
6
                    hash_table_size = arg.hash_table->size();
386
6
                }
387
6
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
382
172
            [&](auto&& arg) {
383
172
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
172
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
172
                    hash_table_size = arg.hash_table->size();
386
172
                }
387
172
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
382
42
            [&](auto&& arg) {
383
42
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
42
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
42
                    hash_table_size = arg.hash_table->size();
386
42
                }
387
42
            },
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
382
18
            [&](auto&& arg) {
383
18
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
18
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
18
                    hash_table_size = arg.hash_table->size();
386
18
                }
387
18
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
382
374
            [&](auto&& arg) {
383
374
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
374
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
374
                    hash_table_size = arg.hash_table->size();
386
374
                }
387
374
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
382
20
            [&](auto&& arg) {
383
20
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
20
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
20
                    hash_table_size = arg.hash_table->size();
386
20
                }
387
20
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
382
12
            [&](auto&& arg) {
383
12
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
12
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
12
                    hash_table_size = arg.hash_table->size();
386
12
                }
387
12
            },
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
382
4
            [&](auto&& arg) {
383
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
4
                    hash_table_size = arg.hash_table->size();
386
4
                }
387
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
382
25
            [&](auto&& arg) {
383
25
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
25
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
25
                    hash_table_size = arg.hash_table->size();
386
25
                }
387
25
            },
388
15.2k
            hash_table_variants->method_variant);
389
15.2k
    return hash_table_size;
390
15.2k
}
391
392
5.12k
Status SetSharedState::hash_table_init() {
393
5.12k
    std::vector<DataTypePtr> data_types;
394
40.4k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
395
35.2k
        auto& ctx = child_exprs_lists[0][i];
396
35.2k
        auto data_type = ctx->root()->data_type();
397
35.2k
        if (build_not_ignore_null[i]) {
398
35.0k
            data_type = make_nullable(data_type);
399
35.0k
        }
400
35.2k
        data_types.emplace_back(std::move(data_type));
401
35.2k
    }
402
5.12k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
403
5.12k
}
404
405
165
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
406
489
    for (int j = 0; j < key_columns.size(); ++j) {
407
324
        limit_columns[j]->insert_from(*key_columns[j], row_id);
408
324
    }
409
165
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
410
165
                       null_directions);
411
412
165
    limit_heap.pop();
413
165
    limit_columns_min = limit_heap.top()._row_id;
414
165
}
415
416
} // namespace doris