mirror of https://github.com/etcd-io/bbolt.git
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
parent
3c6c3ac0a2
commit
6336a429d1
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue