This commit is contained in:
Alexander Tokmakov 2020-12-11 15:06:19 +03:00
parent 04ceaa66f2
commit f9f7da5f97
2 changed files with 2 additions and 1 deletions

View File

@ -79,6 +79,7 @@ namespace ErrorCodes
extern const int ILLEGAL_COLUMN;
extern const int LOGICAL_ERROR;
extern const int PATH_ACCESS_DENIED;
extern const int NOT_IMPLEMENTED;
}
namespace fs = std::filesystem;

View File

@ -53,7 +53,7 @@ def privilege_check(grant_target_name, user_name, node=None):
with Then("I attempt to attach a table"):
node.query(f"ATTACH TABLE {table_name} (x Int8) ENGINE = Memory", settings = [("user", user_name)],
exitcode=80, message="DB::Exception: UUID must be specified")
exitcode=80, message="DB::Exception: Incorrect ATTACH TABLE query")
finally:
with Finally("I drop the table"):