mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fixed style check
This commit is contained in:
parent
83879415b4
commit
913a8f3640
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user