mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Fixed style check
This commit is contained in:
parent
83879415b4
commit
913a8f3640
@ -40,14 +40,16 @@ struct QualifiedTableName
|
|||||||
return hash_state.get64();
|
return hash_state.get64();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::string> getParts() const {
|
std::vector<std::string> getParts() const
|
||||||
|
{
|
||||||
if (database.empty())
|
if (database.empty())
|
||||||
return {table};
|
return {table};
|
||||||
else
|
else
|
||||||
return {database, table};
|
return {database, table};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string getFullName() const {
|
std::string getFullName() const
|
||||||
|
{
|
||||||
if (database.empty())
|
if (database.empty())
|
||||||
return table;
|
return table;
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user