diff --git a/src/db.rs b/src/db.rs index 954de2b..c879bb3 100644 --- a/src/db.rs +++ b/src/db.rs @@ -1669,6 +1669,11 @@ impl WriteBatch { } } + /// Remove database entries in column family from start key to end key. + /// + /// Removes the database entries in the range ["begin_key", "end_key"), i.e., + /// including "begin_key" and excluding "end_key". It is not an error if no + /// keys exist in the range ["begin_key", "end_key"). pub fn delete_range_cf>( &mut self, cf: ColumnFamily,