Coverage Report

Created: 2026-05-16 15:51

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
501k
                                                       const std::string& name) {
36
501k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
501k
    source_deps.back()->set_shared_state(this);
38
501k
    return source_deps.back().get();
39
501k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
107k
                                                  const std::string& name) {
43
107k
    source_deps.resize(num_sources, nullptr);
44
677k
    for (auto& source_dep : source_deps) {
45
677k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
677k
        source_dep->set_shared_state(this);
47
677k
    }
48
107k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
1.06M
                                                     const std::string& name) {
52
1.06M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
1.06M
    sink_deps.back()->set_shared_state(this);
54
1.06M
    return sink_deps.back().get();
55
1.06M
}
56
57
4.83M
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
4.83M
    _blocked_task.push_back(task);
62
4.83M
}
63
64
36.4M
void Dependency::set_ready() {
65
36.4M
    if (_ready) {
66
32.4M
        return;
67
32.4M
    }
68
4.02M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
4.02M
    {
70
4.02M
        std::unique_lock<std::mutex> lc(_task_lock);
71
4.02M
        if (_ready) {
72
53
            return;
73
53
        }
74
4.02M
        _watcher.stop();
75
4.02M
        _ready = true;
76
4.02M
        local_block_task.swap(_blocked_task);
77
4.02M
    }
78
4.85M
    for (auto task : local_block_task) {
79
4.85M
        if (auto t = task.lock()) {
80
4.85M
            std::unique_lock<std::mutex> lc(_task_lock);
81
4.85M
            t->wake_up(this, lc);
82
4.85M
        }
83
4.85M
    }
84
4.02M
}
85
86
47.5M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
47.5M
    std::unique_lock<std::mutex> lc(_task_lock);
88
47.5M
    auto ready = _ready.load();
89
47.5M
    if (!ready && task) {
90
4.84M
        _add_block_task(task);
91
4.84M
        start_watcher();
92
4.84M
        THROW_IF_ERROR(task->blocked(this, lc));
93
4.84M
    }
94
47.5M
    return ready ? nullptr : this;
95
47.5M
}
96
97
148k
std::string Dependency::debug_string(int indentation_level) {
98
148k
    fmt::memory_buffer debug_string_buffer;
99
148k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
100
148k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
101
148k
                   _ready, _always_ready);
102
148k
    return fmt::to_string(debug_string_buffer);
103
148k
}
104
105
290
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
290
    fmt::memory_buffer debug_string_buffer;
107
290
    fmt::format_to(debug_string_buffer,
108
290
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
290
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
290
                   _ready, _always_ready, _counter);
111
290
    return fmt::to_string(debug_string_buffer);
112
290
}
113
114
535
void RuntimeFilterTimer::call_timeout() {
115
535
    _parent->set_ready();
116
535
}
117
118
16.9k
void RuntimeFilterTimer::call_ready() {
119
16.9k
    _parent->set_ready();
120
16.9k
}
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
9.37M
bool RuntimeFilterTimer::should_be_check_timeout() {
126
9.37M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
3.17k
        bool all_ready = true;
128
3.18k
        for (auto& dep : _local_runtime_filter_dependencies) {
129
3.18k
            if (!dep->ready()) {
130
3.16k
                all_ready = false;
131
3.16k
                break;
132
3.16k
            }
133
3.18k
        }
134
3.17k
        if (all_ready) {
135
13
            _local_runtime_filter_dependencies.clear();
136
13
            _registration_time = MonotonicMillis();
137
13
        }
138
3.17k
        return all_ready;
139
3.17k
    }
140
9.37M
    return true;
141
9.37M
}
142
143
9
void RuntimeFilterTimerQueue::start() {
144
180k
    while (!_stop) {
145
180k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
185k
        while (_que.empty() && !_stop) {
148
10.6k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
5.32k
        }
150
180k
        if (_stop) {
151
3
            break;
152
3
        }
153
180k
        {
154
180k
            std::unique_lock<std::mutex> lc(_que_lock);
155
180k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
9.37M
            for (auto& it : _que) {
157
9.37M
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
9.37M
                } else if (it->should_be_check_timeout()) {
160
9.37M
                    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
9.35M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
9.35M
                        if (ms_since_registration > it->wait_time_ms()) {
164
535
                            it->call_timeout();
165
9.35M
                        } else {
166
9.35M
                            new_que.push_back(std::move(it));
167
9.35M
                        }
168
9.35M
                    }
169
9.37M
                } else {
170
3.16k
                    new_que.push_back(std::move(it));
171
3.16k
                }
172
9.37M
            }
173
180k
            new_que.swap(_que);
174
180k
        }
175
180k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
180k
    }
177
9
    _shutdown = true;
178
9
}
179
180
252k
void LocalExchangeSharedState::sub_running_sink_operators() {
181
252k
    std::unique_lock<std::mutex> lc(le_lock);
182
252k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
183
102k
        _set_always_ready();
184
102k
    }
185
252k
}
186
187
656k
void LocalExchangeSharedState::sub_running_source_operators() {
188
656k
    std::unique_lock<std::mutex> lc(le_lock);
189
656k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
102k
        _set_always_ready();
191
102k
        exchanger->finalize();
192
102k
    }
193
656k
}
194
195
102k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
102k
    source_deps.resize(num_instances, nullptr);
197
102k
    mem_counters.resize(num_instances, nullptr);
198
102k
}
199
200
125
MutableColumns AggSharedState::_get_keys_hash_table() {
201
125
    return std::visit(
202
125
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
125
                      [&](auto&& agg_method) -> MutableColumns {
207
125
                          MutableColumns key_columns;
208
331
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
206
                              key_columns.emplace_back(
210
206
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
206
                          }
212
125
                          auto& data = *agg_method.hash_table;
213
125
                          bool has_null_key = data.has_null_key_data();
214
125
                          const auto size = data.size() - has_null_key;
215
125
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
125
                          std::vector<KeyType> keys(size);
217
218
125
                          uint32_t num_rows = 0;
219
125
                          auto iter = aggregate_data_container->begin();
220
125
                          {
221
64.0k
                              while (iter != aggregate_data_container->end()) {
222
63.9k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
63.9k
                                  ++iter;
224
63.9k
                                  ++num_rows;
225
63.9k
                              }
226
125
                          }
227
125
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
125
                          if (has_null_key) {
229
2
                              key_columns[0]->insert_data(nullptr, 0);
230
2
                          }
231
125
                          return key_columns;
232
125
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
23
                      [&](auto&& agg_method) -> MutableColumns {
207
23
                          MutableColumns key_columns;
208
83
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
60
                              key_columns.emplace_back(
210
60
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
60
                          }
212
23
                          auto& data = *agg_method.hash_table;
213
23
                          bool has_null_key = data.has_null_key_data();
214
23
                          const auto size = data.size() - has_null_key;
215
23
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
23
                          std::vector<KeyType> keys(size);
217
218
23
                          uint32_t num_rows = 0;
219
23
                          auto iter = aggregate_data_container->begin();
220
23
                          {
221
36.9k
                              while (iter != aggregate_data_container->end()) {
222
36.9k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
36.9k
                                  ++iter;
224
36.9k
                                  ++num_rows;
225
36.9k
                              }
226
23
                          }
227
23
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
23
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
23
                          return key_columns;
232
23
                      }},
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
206
2
                      [&](auto&& agg_method) -> MutableColumns {
207
2
                          MutableColumns key_columns;
208
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
2
                              key_columns.emplace_back(
210
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
2
                          }
212
2
                          auto& data = *agg_method.hash_table;
213
2
                          bool has_null_key = data.has_null_key_data();
214
2
                          const auto size = data.size() - has_null_key;
215
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
2
                          std::vector<KeyType> keys(size);
217
218
2
                          uint32_t num_rows = 0;
219
2
                          auto iter = aggregate_data_container->begin();
220
2
                          {
221
12
                              while (iter != aggregate_data_container->end()) {
222
10
                                  keys[num_rows] = iter.get_key<KeyType>();
223
10
                                  ++iter;
224
10
                                  ++num_rows;
225
10
                              }
226
2
                          }
227
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
2
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
2
                          return key_columns;
232
2
                      }},
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
5
                      [&](auto&& agg_method) -> MutableColumns {
207
5
                          MutableColumns key_columns;
208
10
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
5
                              key_columns.emplace_back(
210
5
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
5
                          }
212
5
                          auto& data = *agg_method.hash_table;
213
5
                          bool has_null_key = data.has_null_key_data();
214
5
                          const auto size = data.size() - has_null_key;
215
5
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
5
                          std::vector<KeyType> keys(size);
217
218
5
                          uint32_t num_rows = 0;
219
5
                          auto iter = aggregate_data_container->begin();
220
5
                          {
221
24
                              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
5
                          }
227
5
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
5
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
5
                          return key_columns;
232
5
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
52
                              while (iter != aggregate_data_container->end()) {
222
48
                                  keys[num_rows] = iter.get_key<KeyType>();
223
48
                                  ++iter;
224
48
                                  ++num_rows;
225
48
                              }
226
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
4
                          return key_columns;
232
4
                      }},
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
8
                      [&](auto&& agg_method) -> MutableColumns {
207
8
                          MutableColumns key_columns;
208
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
8
                              key_columns.emplace_back(
210
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
8
                          }
212
8
                          auto& data = *agg_method.hash_table;
213
8
                          bool has_null_key = data.has_null_key_data();
214
8
                          const auto size = data.size() - has_null_key;
215
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
8
                          std::vector<KeyType> keys(size);
217
218
8
                          uint32_t num_rows = 0;
219
8
                          auto iter = aggregate_data_container->begin();
220
8
                          {
221
8.26k
                              while (iter != aggregate_data_container->end()) {
222
8.25k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.25k
                                  ++iter;
224
8.25k
                                  ++num_rows;
225
8.25k
                              }
226
8
                          }
227
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
8
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
8
                          return key_columns;
232
8
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
8
                      [&](auto&& agg_method) -> MutableColumns {
207
8
                          MutableColumns key_columns;
208
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
8
                              key_columns.emplace_back(
210
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
8
                          }
212
8
                          auto& data = *agg_method.hash_table;
213
8
                          bool has_null_key = data.has_null_key_data();
214
8
                          const auto size = data.size() - has_null_key;
215
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
8
                          std::vector<KeyType> keys(size);
217
218
8
                          uint32_t num_rows = 0;
219
8
                          auto iter = aggregate_data_container->begin();
220
8
                          {
221
8.27k
                              while (iter != aggregate_data_container->end()) {
222
8.26k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.26k
                                  ++iter;
224
8.26k
                                  ++num_rows;
225
8.26k
                              }
226
8
                          }
227
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
8
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
8
                          return key_columns;
232
8
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
11
                      [&](auto&& agg_method) -> MutableColumns {
207
11
                          MutableColumns key_columns;
208
22
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
11
                              key_columns.emplace_back(
210
11
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
11
                          }
212
11
                          auto& data = *agg_method.hash_table;
213
11
                          bool has_null_key = data.has_null_key_data();
214
11
                          const auto size = data.size() - has_null_key;
215
11
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
11
                          std::vector<KeyType> keys(size);
217
218
11
                          uint32_t num_rows = 0;
219
11
                          auto iter = aggregate_data_container->begin();
220
11
                          {
221
37
                              while (iter != aggregate_data_container->end()) {
222
26
                                  keys[num_rows] = iter.get_key<KeyType>();
223
26
                                  ++iter;
224
26
                                  ++num_rows;
225
26
                              }
226
11
                          }
227
11
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
11
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
11
                          return key_columns;
232
11
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
21
                              while (iter != aggregate_data_container->end()) {
222
17
                                  keys[num_rows] = iter.get_key<KeyType>();
223
17
                                  ++iter;
224
17
                                  ++num_rows;
225
17
                              }
226
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
4
                          return key_columns;
232
4
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Line
Count
Source
206
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
32
                              while (iter != aggregate_data_container->end()) {
222
28
                                  keys[num_rows] = iter.get_key<KeyType>();
223
28
                                  ++iter;
224
28
                                  ++num_rows;
225
28
                              }
226
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
4
                          return key_columns;
232
4
                      }},
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
32
                      [&](auto&& agg_method) -> MutableColumns {
207
32
                          MutableColumns key_columns;
208
64
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
32
                              key_columns.emplace_back(
210
32
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
32
                          }
212
32
                          auto& data = *agg_method.hash_table;
213
32
                          bool has_null_key = data.has_null_key_data();
214
32
                          const auto size = data.size() - has_null_key;
215
32
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
32
                          std::vector<KeyType> keys(size);
217
218
32
                          uint32_t num_rows = 0;
219
32
                          auto iter = aggregate_data_container->begin();
220
32
                          {
221
1.48k
                              while (iter != aggregate_data_container->end()) {
222
1.45k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
1.45k
                                  ++iter;
224
1.45k
                                  ++num_rows;
225
1.45k
                              }
226
32
                          }
227
32
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
32
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
32
                          return key_columns;
232
32
                      }},
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
24
                      [&](auto&& agg_method) -> MutableColumns {
207
24
                          MutableColumns key_columns;
208
92
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
68
                              key_columns.emplace_back(
210
68
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
68
                          }
212
24
                          auto& data = *agg_method.hash_table;
213
24
                          bool has_null_key = data.has_null_key_data();
214
24
                          const auto size = data.size() - has_null_key;
215
24
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
24
                          std::vector<KeyType> keys(size);
217
218
24
                          uint32_t num_rows = 0;
219
24
                          auto iter = aggregate_data_container->begin();
220
24
                          {
221
8.94k
                              while (iter != aggregate_data_container->end()) {
222
8.92k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.92k
                                  ++iter;
224
8.92k
                                  ++num_rows;
225
8.92k
                              }
226
24
                          }
227
24
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
24
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
24
                          return key_columns;
232
24
                      }},
233
125
            agg_data->method_variant);
234
125
}
235
236
125
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
125
    limit_columns = _get_keys_hash_table();
238
63.7k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
63.6k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
63.6k
    }
241
63.2k
    while (hash_table_size > limit) {
242
63.0k
        limit_heap.pop();
243
63.0k
        hash_table_size--;
244
63.0k
    }
245
125
    limit_columns_min = limit_heap.top()._row_id;
246
125
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
222
                                     const std::vector<int>* key_locs) {
250
222
    if (num_rows) {
251
222
        cmp_res.resize(num_rows);
252
222
        need_computes.resize(num_rows);
253
222
        memset(need_computes.data(), 0, need_computes.size());
254
222
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
222
        const auto key_size = null_directions.size();
257
615
        for (int i = 0; i < key_size; i++) {
258
393
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
393
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
393
                                              null_directions[i], order_directions[i], cmp_res,
261
393
                                              need_computes.data());
262
393
        }
263
264
222
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
580k
            for (size_t i = 0; i < rows; ++i) {
266
580k
                computes[i] = computes[i] == res[i];
267
580k
            }
268
222
        };
269
222
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
222
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
222
    }
273
274
0
    return false;
275
222
}
276
277
54
Status AggSharedState::reset_hash_table() {
278
54
    return std::visit(
279
54
            Overload {
280
54
                    [&](std::monostate& arg) -> Status {
281
0
                        return Status::InternalError("Uninited hash table");
282
0
                    },
283
54
                    [&](auto& agg_method) {
284
54
                        auto& hash_table = *agg_method.hash_table;
285
54
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
54
                        agg_method.arena.clear();
288
54
                        agg_method.inited_iterator = false;
289
290
54
                        if (!use_simple_count) {
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
                            });
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
                            });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_ENKUlSG_E_clIS7_EEDaSG_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
297
298
54
                            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
54
                            aggregate_data_container.reset(new AggregateDataContainer(
304
54
                                    sizeof(typename HashTableType::key_type),
305
54
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
54
                                     align_aggregate_states) *
307
54
                                            align_aggregate_states));
308
54
                        }
309
54
                        agg_method.hash_table.reset(new HashTableType());
310
54
                        return Status::OK();
311
54
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_
Line
Count
Source
283
52
                    [&](auto& agg_method) {
284
52
                        auto& hash_table = *agg_method.hash_table;
285
52
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
52
                        agg_method.arena.clear();
288
52
                        agg_method.inited_iterator = false;
289
290
52
                        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
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_
Line
Count
Source
283
2
                    [&](auto& agg_method) {
284
2
                        auto& hash_table = *agg_method.hash_table;
285
2
                        using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
2
                        agg_method.arena.clear();
288
2
                        agg_method.inited_iterator = false;
289
290
2
                        if (!use_simple_count) {
291
2
                            hash_table.for_each_mapped([&](auto& mapped) {
292
2
                                if (mapped) {
293
2
                                    _destroy_agg_status(mapped);
294
2
                                    mapped = nullptr;
295
2
                                }
296
2
                            });
297
298
2
                            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
2
                            aggregate_data_container.reset(new AggregateDataContainer(
304
2
                                    sizeof(typename HashTableType::key_type),
305
2
                                    ((total_size_of_aggregate_states + align_aggregate_states - 1) /
306
2
                                     align_aggregate_states) *
307
2
                                            align_aggregate_states));
308
2
                        }
309
2
                        agg_method.hash_table.reset(new HashTableType());
310
2
                        return Status::OK();
311
2
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_
312
54
            agg_data->method_variant);
313
54
}
314
315
235
void PartitionedAggSharedState::close() {
316
235
    bool false_close = false;
317
235
    if (!is_closed.compare_exchange_strong(false_close, true)) {
318
11
        return;
319
11
    }
320
321
224
    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
224
    _spill_partitions.clear();
327
224
}
328
329
39
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
39
    bool false_close = false;
333
39
    if (!is_closed.compare_exchange_strong(false_close, true)) {
334
14
        return;
335
14
    }
336
39
    DCHECK(!false_close && is_closed);
337
25
    sorted_spill_groups.clear();
338
25
}
339
340
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
341
        : multi_cast_data_streamer(
342
3.19k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
343
344
119k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
345
119k
    auto ctxs = evaluator->input_exprs_ctxs();
346
18.4E
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
347
18.4E
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
348
18.4E
            << ctxs[0]->root()->debug_string();
349
119k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
350
119k
}
351
352
2.45M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
353
5.30M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
354
2.84M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
355
2.84M
    }
356
2.45M
}
357
358
45.8k
void BucketedAggSharedState::_destroy_agg_status(AggregateDataPtr data) {
359
45.8k
    DCHECK(!use_simple_count) << "should not call _destroy_agg_status when use_simple_count";
360
91.8k
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
361
46.0k
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
362
46.0k
    }
363
45.8k
}
364
365
102k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
366
367
12.4k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
368
12.4k
    if (ctxs.size() > build_not_ignore_null.size()) {
369
0
        return Status::InternalError("build_not_ignore_null not initialized");
370
0
    }
371
372
101k
    for (int i = 0; i < ctxs.size(); ++i) {
373
89.3k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
374
89.3k
    }
375
376
12.4k
    return Status::OK();
377
12.4k
}
378
379
15.0k
size_t SetSharedState::get_hash_table_size() const {
380
15.0k
    size_t hash_table_size = 0;
381
15.0k
    std::visit(
382
15.0k
            [&](auto&& arg) {
383
15.0k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
15.0k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
15.0k
                    hash_table_size = arg.hash_table->size();
386
15.0k
                }
387
15.0k
            },
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.4k
            [&](auto&& arg) {
383
13.4k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
13.4k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
13.4k
                    hash_table_size = arg.hash_table->size();
386
13.4k
                }
387
13.4k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
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
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
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_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.04k
            [&](auto&& arg) {
383
1.04k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
1.04k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
1.04k
                    hash_table_size = arg.hash_table->size();
386
1.04k
                }
387
1.04k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
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_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
382
24
            [&](auto&& arg) {
383
24
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
24
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
24
                    hash_table_size = arg.hash_table->size();
386
24
                }
387
24
            },
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
132
            [&](auto&& arg) {
383
132
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
132
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
132
                    hash_table_size = arg.hash_table->size();
386
132
                }
387
132
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
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
            },
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
32
            [&](auto&& arg) {
383
32
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
32
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
32
                    hash_table_size = arg.hash_table->size();
386
32
                }
387
32
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
382
28
            [&](auto&& arg) {
383
28
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
28
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
28
                    hash_table_size = arg.hash_table->size();
386
28
                }
387
28
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
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_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
10
            [&](auto&& arg) {
383
10
                using HashTableCtxType = std::decay_t<decltype(arg)>;
384
10
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
385
10
                    hash_table_size = arg.hash_table->size();
386
10
                }
387
10
            },
388
15.0k
            hash_table_variants->method_variant);
389
15.0k
    return hash_table_size;
390
15.0k
}
391
392
4.95k
Status SetSharedState::hash_table_init() {
393
4.95k
    std::vector<DataTypePtr> data_types;
394
40.6k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
395
35.6k
        auto& ctx = child_exprs_lists[0][i];
396
35.6k
        auto data_type = ctx->root()->data_type();
397
35.6k
        if (build_not_ignore_null[i]) {
398
35.4k
            data_type = make_nullable(data_type);
399
35.4k
        }
400
35.6k
        data_types.emplace_back(std::move(data_type));
401
35.6k
    }
402
4.95k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
403
4.95k
}
404
405
60
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
406
186
    for (int j = 0; j < key_columns.size(); ++j) {
407
126
        limit_columns[j]->insert_from(*key_columns[j], row_id);
408
126
    }
409
60
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
410
60
                       null_directions);
411
412
60
    limit_heap.pop();
413
60
    limit_columns_min = limit_heap.top()._row_id;
414
60
}
415
416
} // namespace doris