Rename the vector store const name and keep the vector-arroy db name

This commit is contained in:
Clément Renault
2025-07-29 17:31:33 +02:00
parent 032e02057c
commit 61249887c0
3 changed files with 5 additions and 5 deletions

View File

@ -149,7 +149,7 @@ impl<'t> VectorDocument<'t> for VectorDocumentFromDb<'t> {
name,
entry_from_raw_value(value, false).map_err(|_| {
InternalError::Serialization(crate::SerializationError::Decoding {
db_name: Some(crate::index::db_name::VECTOR_HANNOY),
db_name: Some(crate::index::db_name::VECTOR_STORE),
})
})?,
))
@ -167,7 +167,7 @@ impl<'t> VectorDocument<'t> for VectorDocumentFromDb<'t> {
Some(embedding_from_doc) => {
Some(entry_from_raw_value(embedding_from_doc, false).map_err(|_| {
InternalError::Serialization(crate::SerializationError::Decoding {
db_name: Some(crate::index::db_name::VECTOR_HANNOY),
db_name: Some(crate::index::db_name::VECTOR_STORE),
})
})?)
}