This commit is contained in:
Ante Pušić 2024-02-26 07:51:01 +01:00
parent 57ec774c86
commit 70a53cd2b8

View File

@ -95,6 +95,7 @@ std::string TextIndex::CopyPropertyValuesToString(const std::map<PropertyId, Pro
case PropertyValue::Type::String:
indexable_properties_as_string.push_back(prop_value.ValueString());
break;
// NOTE: As the following types arent indexed in Tantivy, they dont appear in the property value string either.
case PropertyValue::Type::Null:
case PropertyValue::Type::List:
case PropertyValue::Type::Map: