From f4eb19bd69dd33cccf7abe30c55c5b43c5d978f9 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Sun, 29 Jan 2023 04:43:24 +0300 Subject: [PATCH] Update InterpreterSystemQuery.cpp --- src/Interpreters/InterpreterSystemQuery.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Interpreters/InterpreterSystemQuery.cpp b/src/Interpreters/InterpreterSystemQuery.cpp index d6f55bb8b89..19b31a858f4 100644 --- a/src/Interpreters/InterpreterSystemQuery.cpp +++ b/src/Interpreters/InterpreterSystemQuery.cpp @@ -295,8 +295,7 @@ BlockIO InterpreterSystemQuery::execute() } case Type::SYNC_FILE_CACHE: { - // It's too heavy. - LOG_DEBUG(log, "will call syscall sync() function, It's too heavy."); + LOG_DEBUG(log, "Will perform 'sync' syscall (it can take time)."); sync(); break; }