mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
Print CREATE, not ATTACH
This commit is contained in:
parent
eb5115adb8
commit
9190a883d3
@ -214,13 +214,17 @@ DatabasePtr DatabaseFactory::getImpl(const ASTCreateQuery & create, const String
|
|||||||
materialize_mode_settings->loadFromQuery(*engine_define);
|
materialize_mode_settings->loadFromQuery(*engine_define);
|
||||||
|
|
||||||
if (uuid == UUIDHelpers::Nil)
|
if (uuid == UUIDHelpers::Nil)
|
||||||
|
{
|
||||||
|
auto print_create_ast = create.clone();
|
||||||
|
print_create_ast->as<ASTCreateQuery>()->attach = false;
|
||||||
throw Exception(
|
throw Exception(
|
||||||
fmt::format(
|
fmt::format(
|
||||||
"The MaterializedMySQL database engine no longer supports Ordinary databases. To re-create the database, delete "
|
"The MaterializedMySQL database engine no longer supports Ordinary databases. To re-create the database, delete "
|
||||||
"the old one by executing \"rm -rf {}{{,.sql}}\", then re-create the database with the following query: {}",
|
"the old one by executing \"rm -rf {}{{,.sql}}\", then re-create the database with the following query: {}",
|
||||||
metadata_path,
|
metadata_path,
|
||||||
queryToString(create)),
|
queryToString(print_create_ast)),
|
||||||
ErrorCodes::NOT_IMPLEMENTED);
|
ErrorCodes::NOT_IMPLEMENTED);
|
||||||
|
}
|
||||||
|
|
||||||
return std::make_shared<DatabaseMaterializedMySQL>(
|
return std::make_shared<DatabaseMaterializedMySQL>(
|
||||||
context, database_name, metadata_path, uuid, configuration.database, std::move(mysql_pool),
|
context, database_name, metadata_path, uuid, configuration.database, std::move(mysql_pool),
|
||||||
|
Loading…
Reference in New Issue
Block a user