From b0cf9f6d0213becf3456ce277a5d814afa8b5572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 20 Feb 2018 16:20:30 +0000 Subject: [PATCH] kvdb-rocksdb: remove buffered operations when committing transaction (#7950) --- src/lib.rs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index f30ceba..aef4485 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -491,6 +491,9 @@ impl Database { let batch = WriteBatch::new(); let ops = tr.ops; for op in ops { + // remove any buffered operation for this key + self.overlay.write()[Self::to_overlay_column(op.col())].remove(op.key()); + match op { DBOp::Insert { col, key, value } => { col.map_or_else(|| batch.put(&key, &value), |c| batch.put_cf(cfs[c as usize], &key, &value))? @@ -857,4 +860,21 @@ mod tests { assert_eq!(db.num_columns(), 0); } } + + #[test] + fn write_clears_buffered_ops() { + let tempdir = TempDir::new("").unwrap(); + let config = DatabaseConfig::default(); + let db = Database::open(&config, tempdir.path().to_str().unwrap()).unwrap(); + + let mut batch = db.transaction(); + batch.put(None, b"foo", b"bar"); + db.write_buffered(batch); + + let mut batch = db.transaction(); + batch.put(None, b"foo", b"baz"); + db.write(batch).unwrap(); + + assert_eq!(db.get(None, b"foo").unwrap().unwrap().as_ref(), b"baz"); + } }