This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 4b0d6716dc41ca627c4b4bcb1eb353a6717d1e32 Author: wangbo <[email protected]> AuthorDate: Tue Feb 27 10:09:33 2024 +0800 [Fix](be)Fix gcc compile failed #31431 --- be/src/runtime/task_group/task_group.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/be/src/runtime/task_group/task_group.h b/be/src/runtime/task_group/task_group.h index c54fce2ab65..938f73ac20a 100644 --- a/be/src/runtime/task_group/task_group.h +++ b/be/src/runtime/task_group/task_group.h @@ -160,9 +160,9 @@ private: std::shared_mutex _task_sched_lock; std::unique_ptr<CgroupCpuCtl> _cgroup_cpu_ctl = nullptr; - std::unique_ptr<doris::pipeline::TaskScheduler> _task_sched = nullptr; - std::unique_ptr<vectorized::SimplifiedScanScheduler> _scan_task_sched = nullptr; - std::unique_ptr<vectorized::SimplifiedScanScheduler> _remote_scan_task_sched = nullptr; + std::unique_ptr<doris::pipeline::TaskScheduler> _task_sched {nullptr}; + std::unique_ptr<vectorized::SimplifiedScanScheduler> _scan_task_sched {nullptr}; + std::unique_ptr<vectorized::SimplifiedScanScheduler> _remote_scan_task_sched {nullptr}; std::unique_ptr<ThreadPool> _non_pipe_thread_pool = nullptr; }; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
