mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Fix amusing error in conversion from Ordinary to Atomic
This commit is contained in:
parent
779a8f1305
commit
f5f08f973e
@ -390,8 +390,8 @@ static void maybeConvertOrdinaryDatabaseToAtomic(ContextMutablePtr context, cons
|
|||||||
catch (Exception & e)
|
catch (Exception & e)
|
||||||
{
|
{
|
||||||
e.addMessage("Exception while trying to convert database {} from Ordinary to Atomic. It may be in some intermediate state."
|
e.addMessage("Exception while trying to convert database {} from Ordinary to Atomic. It may be in some intermediate state."
|
||||||
"You can finish conversion manually by moving the rest tables from {} to {} (using RENAME TABLE)"
|
" You can finish conversion manually by moving the rest tables from {} to {} (using RENAME TABLE)"
|
||||||
"and executing DROP DATABASE {} and RENAME DATABASE {} TO {}.",
|
" and executing DROP DATABASE {} and RENAME DATABASE {} TO {}.",
|
||||||
database_name, database_name, tmp_name, database_name, tmp_name, database_name);
|
database_name, database_name, tmp_name, database_name, tmp_name, database_name);
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user