mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
Kusto-phase1: Fixed style
This commit is contained in:
parent
b3ebac353f
commit
f4db644498
@ -47,9 +47,9 @@ std::pair<String, String> ParserKQLSummarize::removeLastWord(String input)
|
||||
{
|
||||
return std::make_pair(first_part, temp[temp.size() - 1]);
|
||||
}
|
||||
if (temp.size() > 0)
|
||||
if (!temp.empty())
|
||||
{
|
||||
return std::make_pair(firstPart, temp[temp.size() - 1]);
|
||||
return std::make_pair(first_part, temp[temp.size() - 1]);
|
||||
}
|
||||
|
||||
return std::make_pair("", "");
|
||||
|
Loading…
Reference in New Issue
Block a user