Fixing build.

This commit is contained in:
Nikolai Kochetov 2020-12-25 20:00:42 +03:00
parent 2c06a65e1c
commit b53442e521

View File

@ -481,7 +481,7 @@ struct MinHashImpl
size_t length = start - word_start;
if (length)
words.emplace_back(word_start, length);
words.emplace_back(BytesRef{word_start, length});
}
UInt64 hash_value = Hash::shingleHash<CaseInsensitive>(words);