File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
274275Status ThreadPool::try_create_thread (int thread_num, std::lock_guard<std::mutex>&) {
@@ -332,7 +333,7 @@ Status ThreadPool::init() {
332333}
333334
334335void 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
You can’t perform that action at this time.
0 commit comments