mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/mergeset: remove dead code left after a4140de9e6
This commit is contained in:
parent
9ed7789fef
commit
afa9cf9c57
1 changed files with 0 additions and 5 deletions
|
@ -314,15 +314,10 @@ type inmemoryBlockCache struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type inmemoryBlockCacheKey struct {
|
type inmemoryBlockCacheKey struct {
|
||||||
firstItem string
|
|
||||||
itemsBlockOffset uint64
|
itemsBlockOffset uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ibck *inmemoryBlockCacheKey) Init(bh *blockHeader) {
|
func (ibck *inmemoryBlockCacheKey) Init(bh *blockHeader) {
|
||||||
ibck.firstItem = ""
|
|
||||||
if bh.itemsBlockSize == 0 {
|
|
||||||
ibck.firstItem = string(bh.firstItem)
|
|
||||||
}
|
|
||||||
ibck.itemsBlockOffset = bh.itemsBlockOffset
|
ibck.itemsBlockOffset = bh.itemsBlockOffset
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue