Coverage Report

Created: 2026-03-20 04:44

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