From 289a82969bd27416b7a0fb1493f5f2e4ff00b59a Mon Sep 17 00:00:00 2001 From: Yongqiang YANG Date: Tue, 19 Sep 2023 12:02:50 +0800 Subject: [PATCH] format --- be/src/pipeline/exec/scan_operator.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/be/src/pipeline/exec/scan_operator.h b/be/src/pipeline/exec/scan_operator.h index f6adcee05e11ca..66d87579551946 100644 --- a/be/src/pipeline/exec/scan_operator.h +++ b/be/src/pipeline/exec/scan_operator.h @@ -98,8 +98,7 @@ struct DataReadyDependency : public Dependency { void* shared_state() override { return nullptr; } [[nodiscard]] Dependency* read_blocked_by() override { - if (_scanner_ctx->get_num_running_scanners() == 0 && - _scanner_ctx->should_be_scheduled()) { + if (_scanner_ctx->get_num_running_scanners() == 0 && _scanner_ctx->should_be_scheduled()) { _scanner_ctx->reschedule_scanner_ctx(); } return _ready_for_read ? nullptr : this;