From 579b13ab7155bca26c8a1ac837d4a0c299cdd90b Mon Sep 17 00:00:00 2001 From: Alexander Kuzmenkov Date: Thu, 25 Jun 2020 01:07:01 +0300 Subject: [PATCH] fixpu --- programs/local/LocalServer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/programs/local/LocalServer.cpp b/programs/local/LocalServer.cpp index 9b1076077ca..94c77d82e7e 100644 --- a/programs/local/LocalServer.cpp +++ b/programs/local/LocalServer.cpp @@ -47,6 +47,8 @@ namespace DB namespace ErrorCodes { + extern const int BAD_ARGUMENTS; + extern const int LOGICAL_ERROR; extern const int SYNTAX_ERROR; extern const int CANNOT_LOAD_CONFIG; } @@ -112,7 +114,7 @@ void LocalServer::tryInitPath() { throw Exception(ErrorCodes::BAD_ARGUMENTS, "Cannot work with emtpy storage path that is explicitly specified" - " by the --path option. Please check the program options and + " by the --path option. Please check the program options and" " correct the --path."); } }