|
|
@ -143,11 +143,13 @@ class SstFileWriter { |
|
|
|
// the comparator.
|
|
|
|
// the comparator.
|
|
|
|
Status Delete(const Slice& user_key, const Slice& timestamp); |
|
|
|
Status Delete(const Slice& user_key, const Slice& timestamp); |
|
|
|
|
|
|
|
|
|
|
|
// Add a range deletion tombstone to currently opened file
|
|
|
|
// Add a range deletion tombstone to currently opened file. Such a range
|
|
|
|
|
|
|
|
// deletion tombstone does NOT delete other (point) keys in the same file.
|
|
|
|
// REQUIRES: comparator is *not* timestamp-aware.
|
|
|
|
// REQUIRES: comparator is *not* timestamp-aware.
|
|
|
|
Status DeleteRange(const Slice& begin_key, const Slice& end_key); |
|
|
|
Status DeleteRange(const Slice& begin_key, const Slice& end_key); |
|
|
|
|
|
|
|
|
|
|
|
// Add a range deletion tombstone to currently opened file.
|
|
|
|
// Add a range deletion tombstone to currently opened file. Such a range
|
|
|
|
|
|
|
|
// deletion tombstone does NOT delete other (point) keys in the same file.
|
|
|
|
// REQUIRES: begin_key and end_key are user keys without timestamp.
|
|
|
|
// REQUIRES: begin_key and end_key are user keys without timestamp.
|
|
|
|
// REQUIRES: the timestamp's size is equal to what is expected by
|
|
|
|
// REQUIRES: the timestamp's size is equal to what is expected by
|
|
|
|
// the comparator.
|
|
|
|
// the comparator.
|
|
|
|