Coverage Report

Created: 2026-03-31 13:21

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