Fix deletion of non-existing keys

Doc for Bucket.Delete says that a Delete() on non-existing key is a
no-op. Right now it tries to delete the next key returned by the
cursor. Fix this by checking for key equivalence before deletion.

 Fixes #349

Signed-off-by: Pavel Borzenkov <pavel.borzenkov@gmail.com>
pull/23/head
Pavel Borzenkov 2017-02-08 18:25:52 +03:00 committed by Anthony Romano
parent 3c6c3ac0a2
commit 6336a429d1
1 changed files with 6 additions and 1 deletions

View File

@ -323,7 +323,12 @@ func (b *Bucket) Delete(key []byte) error {
// Move cursor to correct position.
c := b.Cursor()
_, _, flags := c.seek(key)
k, _, flags := c.seek(key)
// Return nil if the key doesn't exist.
if !bytes.Equal(key, k) {
return nil
}
// Return an error if there is already existing bucket value.
if (flags & bucketLeafFlag) != 0 {