commit after creating an index

This commit is contained in:
Tamo 2022-10-16 03:14:01 +02:00 committed by Clément Renault
parent 554600dfd8
commit ba150f2127
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -525,7 +525,10 @@ impl IndexScheduler {
/// Create a new index without any associated task.
pub fn create_raw_index(&self, name: &str) -> Result<Index> {
let mut wtxn = self.env.write_txn()?;
self.index_mapper.create_index(&mut wtxn, name)
let index = self.index_mapper.create_index(&mut wtxn, name)?;
wtxn.commit()?;
Ok(index)
}
pub fn create_update_file(&self) -> Result<(Uuid, file_store::File)> {