From d4f0e8d4c2069f12fd71106830b330c8af2d1182 Mon Sep 17 00:00:00 2001 From: Vxider Date: Sat, 4 Jun 2022 17:14:42 +0000 Subject: [PATCH] update code style --- src/Storages/WindowView/StorageWindowView.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Storages/WindowView/StorageWindowView.cpp b/src/Storages/WindowView/StorageWindowView.cpp index 5989edb279f..2db2b195bee 100644 --- a/src/Storages/WindowView/StorageWindowView.cpp +++ b/src/Storages/WindowView/StorageWindowView.cpp @@ -1028,9 +1028,7 @@ void StorageWindowView::threadFuncFireProc() UInt64 timestamp_ms = static_cast(Poco::Timestamp().epochMicroseconds()) / 1000; if (!shutdown_called) - fire_task->scheduleAfter(std::max( - UInt64(0), - static_cast(next_fire_signal) * 1000 - timestamp_ms)); + fire_task->scheduleAfter(std::max(UInt64(0), static_cast(next_fire_signal) * 1000 - timestamp_ms)); } void StorageWindowView::threadFuncFireEvent()