Skip to content

Commit 353ffd4

Browse files
committed
FXI'
1 parent 85d4861 commit 353ffd4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

be/src/olap/rowset/segment_v2/segment_iterator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2965,8 +2965,8 @@ void SegmentIterator::_calculate_expr_in_remaining_conjunct_root() {
29652965
}
29662966
if (child->is_slot_ref()) {
29672967
auto* column_slot_ref = assert_cast<vectorized::VSlotRef*>(child.get());
2968-
_common_expr_index_exec_status[_schema->column_id(
2969-
column_slot_ref->column_id())][expr.get()] = false;
2968+
_common_expr_index_exec_status[_schema->column_id(column_slot_ref->column_id())]
2969+
[expr.get()] = false;
29702970
_common_expr_to_slotref_map[root_expr_ctx.get()][column_slot_ref->column_id()] =
29712971
expr.get();
29722972
}

be/src/olap/rowset/segment_v2/segment_iterator.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,6 @@ class SegmentIterator : public RowwiseIterator {
520520
bool _find_condition_cache = false;
521521
std::shared_ptr<std::vector<bool>> _condition_cache;
522522
static constexpr int CONDITION_CACHE_OFFSET = 2048;
523-
524523
};
525524

526525
} // namespace segment_v2

be/src/util/threadpool.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ ThreadPool::~ThreadPool() {
269269
CHECK_EQ(1, _tokens.size()) << absl::Substitute(
270270
"Threadpool $0 destroyed with $1 allocated tokens", _name, _tokens.size());
271271
shutdown();
272+
LOG_INFO("Thread pool {} destroyed", _name);
272273
}
273274

274275
Status ThreadPool::try_create_thread(int thread_num, std::lock_guard<std::mutex>&) {
@@ -332,7 +333,7 @@ Status ThreadPool::init() {
332333
}
333334

334335
void ThreadPool::shutdown() {
335-
VLOG_DEBUG << "Shutting down thread pool " << _name;
336+
LOG_INFO("Shutting down thread pool {}", _name);
336337
// Why access to doris_metrics is safe here?
337338
// Since DorisMetrics is a singleton, it will be destroyed only after doris_main is exited.
338339
// The shutdown/destroy of ThreadPool is guaranteed to take place before doris_main exits by

0 commit comments

Comments
 (0)