VictoriaMetrics/lib/fs/fadvise_darwin.go
Zongyang bcb3626d1f
FIX bottomk doesn't return any data when there are no time range overlap between timeseries (#5509)
* FIX sort order in bottomk

* Add lessWithNaNsReversed for bottomk

* Add ut for TopK

* Move lt from loop

* FIX lint

* FIX lint

* FIX lint

* Mod log format

---------

Co-authored-by: xiaozongyang <xiaozngyang@kanyun.com>
Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
2024-01-16 22:20:40 +02:00

10 lines
150 B
Go

package fs
import (
"os"
)
func fadviseSequentialRead(f *os.File, prefetch bool) error { // nolint
// TODO: implement this properly
return nil
}