[search] Fix search synonyms for China

This commit is contained in:
tatiana-yan 2019-05-23 19:21:30 +03:00 committed by mpimenov
parent a785af047b
commit b075f5f771
2 changed files with 6 additions and 4 deletions

View file

@ -69,6 +69,6 @@ Yukon: YT
Россия: РФ
Китайская Народная Република: Китай, КНР
Китай: Китайская Народная Република, КНР
Китай: КНР
People's Republic of China: China, PRC
China: People's Republic of China, PRC
China: PRC

View file

@ -77,8 +77,10 @@ public:
for (size_t i = 1; i < tokens.size(); ++i)
{
strings::Trim(tokens[i]);
// synonym should not has any spaces
ASSERT(tokens[i].find_first_of(" \t") == string::npos, ());
// For consistency, synonyms should not have any spaces.
// For example, the hypothetical "Russia" -> "Russian Federation" mapping
// would have the feature with name "Russia" match the request "federation". It would be wrong.
CHECK(tokens[i].find_first_of(" \t") == string::npos, ());
m_map.insert(make_pair(tokens[0], tokens[i]));
}
}