Fixed style check

This commit is contained in:
Maksim Kita 2021-10-14 22:15:21 +03:00
parent 83879415b4
commit 913a8f3640

View File

@ -40,14 +40,16 @@ struct QualifiedTableName
return hash_state.get64();
}
std::vector<std::string> getParts() const {
std::vector<std::string> getParts() const
{
if (database.empty())
return {table};
else
return {database, table};
}
std::string getFullName() const {
std::string getFullName() const
{
if (database.empty())
return table;
else