fix: error during deserialization of "INVERTED" index type

This commit is contained in:
Ryan Green
2024-10-25 14:55:13 -02:30
parent d1d0247014
commit fe8b5b31f8

View File

@@ -134,6 +134,7 @@ impl std::fmt::Display for IndexType {
Self::Bitmap => write!(f, "BITMAP"),
Self::LabelList => write!(f, "LABEL_LIST"),
Self::FTS => write!(f, "FTS"),
Self::INVERTED => write!(f, "FTS"),
}
}
}