go fmt
This commit is contained in:
@@ -65,7 +65,7 @@ func (nm *NeedleMap) Get(key NeedleId) (existingValue *needle_map.NeedleValue, o
|
||||
}
|
||||
func (nm *NeedleMap) Delete(key NeedleId) error {
|
||||
existingValue, ok := nm.m.Get(NeedleId(key))
|
||||
if !ok || existingValue.Size.IsDeleted(){
|
||||
if !ok || existingValue.Size.IsDeleted() {
|
||||
return nil
|
||||
}
|
||||
deletedBytes := nm.m.Delete(NeedleId(key))
|
||||
|
||||
@@ -17,7 +17,7 @@ func TestFastLoadingNeedleMapMetrics(t *testing.T) {
|
||||
for i := 0; i < 10000; i++ {
|
||||
nm.Put(Uint64ToNeedleId(uint64(i+1)), Uint32ToOffset(uint32(0)), Size(1))
|
||||
if rand.Float32() < 0.2 {
|
||||
nm.Delete(Uint64ToNeedleId(uint64(rand.Int63n(int64(i))+1)))
|
||||
nm.Delete(Uint64ToNeedleId(uint64(rand.Int63n(int64(i)) + 1)))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user