mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
Kusto summarize init
This commit is contained in:
parent
fceaf456c1
commit
b3ebac353f
@ -47,6 +47,10 @@ std::pair<String, String> ParserKQLSummarize::removeLastWord(String input)
|
|||||||
{
|
{
|
||||||
return std::make_pair(first_part, temp[temp.size() - 1]);
|
return std::make_pair(first_part, temp[temp.size() - 1]);
|
||||||
}
|
}
|
||||||
|
if (temp.size() > 0)
|
||||||
|
{
|
||||||
|
return std::make_pair(firstPart, temp[temp.size() - 1]);
|
||||||
|
}
|
||||||
|
|
||||||
return std::make_pair("", "");
|
return std::make_pair("", "");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user