From 8e8bc83d36eb2a6c617f936bb6de0ad81f6af34d Mon Sep 17 00:00:00 2001 From: shabroo <114589608+shabroo@users.noreply.github.com> Date: Tue, 26 Mar 2024 17:37:27 +0100 Subject: [PATCH] Update Context.cpp @alexey-milovidov please stop torturing me and accept this commit. --- src/Interpreters/Context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/Context.cpp b/src/Interpreters/Context.cpp index 7030522dd2a..65fcd51529b 100644 --- a/src/Interpreters/Context.cpp +++ b/src/Interpreters/Context.cpp @@ -1219,7 +1219,7 @@ void Context::addWarningMessageAboutDatabaseOrdinary(const String & database_nam /// We don't use getFlagsPath method, because it takes a shared lock. auto convert_databases_flag = fs::path(shared->flags_path) / "convert_ordinary_to_atomic"; auto message = fmt::format("Server has databases (for example `{}`) with Ordinary engine, which was deprecated. " - "To convert this database to a new Atomic engine, create a flag {} and make sure that ClickHouse has write permission for it. " + "To convert this database to the new Atomic engine, create a flag {} and make sure that ClickHouse has write permission for it. " "Example: sudo touch '{}' && sudo chmod 666 '{}'", database_name, convert_databases_flag.string(), convert_databases_flag.string(), convert_databases_flag.string());