未验证 提交 5b820801 编写于 作者: A alexey-milovidov 提交者: GitHub

Update DataTypeFactory.cpp

上级 4835b4e1
......@@ -118,7 +118,7 @@ void DataTypeFactory::registerAlias(const String & alias_name, const String & re
if(!case_insensitive_aliases.emplace(alias_name_lowercase, real_type_dict_name).second)
throw Exception("DataTypeFactory: case insensitive alias name '" + alias_name + "' is not unique", ErrorCodes::LOGICAL_ERROR);
if(!aliases.emplace(alias_name, real_type_dict_name).second)
if (!aliases.emplace(alias_name, real_type_dict_name).second)
throw Exception("DataTypeFactory: alias name '" + alias_name + "' is not unique", ErrorCodes::LOGICAL_ERROR);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册