mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Not remove metadata directory when attach database fails
This commit is contained in:
parent
7065a8ba9c
commit
a622208284
@ -36,16 +36,18 @@ namespace ErrorCodes
|
||||
DatabasePtr DatabaseFactory::get(
|
||||
const String & database_name, const String & metadata_path, const ASTStorage * engine_define, Context & context)
|
||||
{
|
||||
bool create = false;
|
||||
|
||||
try
|
||||
{
|
||||
Poco::File(metadata_path).createDirectory();
|
||||
create = Poco::File(metadata_path).createDirectory();
|
||||
return getImpl(database_name, metadata_path, engine_define, context);
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
Poco::File metadata_dir(metadata_path);
|
||||
|
||||
if (metadata_dir.exists())
|
||||
if (create && metadata_dir.exists())
|
||||
metadata_dir.remove(true);
|
||||
|
||||
throw;
|
||||
|
Loading…
Reference in New Issue
Block a user