We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 234f8a2 commit 710ae11Copy full SHA for 710ae11
durable-storage/src/persistence_layer.rs
@@ -202,10 +202,11 @@ impl PersistenceLayer {
202
// call its destroy method to avoid UB. This happens in this unit expression.
203
Checkpoint::new(db)?.create_checkpoint(&checkpoint_path)?;
204
205
- let temp_db =
206
- rocksdb::DB::open_cf(&rocksdb_clone_as_checkpoint_options(), &checkpoint_path, [
207
- BLOB_CF,
208
- ])?;
+ let temp_db = rocksdb::DB::open_cf(
+ &rocksdb_clone_as_checkpoint_options(),
+ &checkpoint_path,
+ [BLOB_CF],
209
+ )?;
210
211
Ok(Self {
212
db_instance: ManuallyDrop::new(temp_db),
0 commit comments