mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Very minor refactor of the integer overflow fix
Signed-off-by: Jeanette Tan <jeanette.tan@grafana.com>
This commit is contained in:
parent
ef8e6ae780
commit
71a36d2396
|
@ -178,7 +178,13 @@ type chunkMetaAndChunkDiskMapperRef struct {
|
|||
}
|
||||
|
||||
func refLessByMinTimeAndMinRef(a, b chunkMetaAndChunkDiskMapperRef) int {
|
||||
if a.meta.MinTime == b.meta.MinTime {
|
||||
switch {
|
||||
case a.meta.MinTime < b.meta.MinTime:
|
||||
return -1
|
||||
case a.meta.MinTime > b.meta.MinTime:
|
||||
return 1
|
||||
}
|
||||
|
||||
switch {
|
||||
case a.meta.Ref < b.meta.Ref:
|
||||
return -1
|
||||
|
@ -188,32 +194,20 @@ func refLessByMinTimeAndMinRef(a, b chunkMetaAndChunkDiskMapperRef) int {
|
|||
return 0
|
||||
}
|
||||
}
|
||||
switch {
|
||||
case a.meta.MinTime < b.meta.MinTime:
|
||||
return -1
|
||||
case a.meta.MinTime > b.meta.MinTime:
|
||||
return 1
|
||||
default:
|
||||
return 0
|
||||
}
|
||||
}
|
||||
|
||||
func lessByMinTimeAndMinRef(a, b chunks.Meta) int {
|
||||
if a.MinTime == b.MinTime {
|
||||
switch {
|
||||
case a.Ref < b.Ref:
|
||||
return -1
|
||||
case a.Ref > b.Ref:
|
||||
return 1
|
||||
default:
|
||||
return 0
|
||||
}
|
||||
}
|
||||
switch {
|
||||
case a.MinTime < b.MinTime:
|
||||
return -1
|
||||
case a.MinTime > b.MinTime:
|
||||
return 1
|
||||
}
|
||||
|
||||
switch {
|
||||
case a.Ref < b.Ref:
|
||||
return -1
|
||||
case a.Ref > b.Ref:
|
||||
return 1
|
||||
default:
|
||||
return 0
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue