From 57f6780136f7836f454fdd8566c9c7fd65c368df Mon Sep 17 00:00:00 2001 From: Mikhail Korotov <55493615+millb@users.noreply.github.com> Date: Tue, 29 Oct 2019 14:39:57 +0300 Subject: [PATCH] Update ErrorCodes.cpp --- dbms/src/Common/ErrorCodes.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dbms/src/Common/ErrorCodes.cpp b/dbms/src/Common/ErrorCodes.cpp index eabeb894cd9..8ced7b75516 100644 --- a/dbms/src/Common/ErrorCodes.cpp +++ b/dbms/src/Common/ErrorCodes.cpp @@ -459,7 +459,12 @@ namespace ErrorCodes extern const int DICTIONARY_ACCESS_DENIED = 482; extern const int TOO_MANY_REDIRECTS = 483; extern const int INTERNAL_REDIS_ERROR = 484; - extern const int UNACCEPTABLE_URL = 485; + extern const int SCALAR_ALREADY_EXISTS = 485; + extern const int UNKNOWN_SCALAR = 486; + extern const int CANNOT_GET_CREATE_DICTIONARY_QUERY = 487; + extern const int UNKNOWN_DICTIONARY = 488; + extern const int INCORRECT_DICTIONARY_DEFINITION = 489; + extern const int UNACCEPTABLE_URL = 490; extern const int KEEPER_EXCEPTION = 999; extern const int POCO_EXCEPTION = 1000;