Kusto summarize init

This commit is contained in:
root 2022-06-09 11:04:20 -07:00 committed by Yong Wang
parent fceaf456c1
commit b3ebac353f

View File

@ -47,6 +47,10 @@ std::pair<String, String> ParserKQLSummarize::removeLastWord(String input)
{
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("", "");
}