Fix issue

Signed-off-by: Charles Korn <charles.korn@grafana.com>
This commit is contained in:
Charles Korn 2025-02-05 11:45:30 +11:00
parent 2fc6ba1c94
commit 69ce0c24db
No known key found for this signature in database

View file

@ -2357,6 +2357,11 @@ func (ev *evaluator) matrixIterSlice(
}
}
if mint == maxt {
// Empty range: return the empty slices.
return floats, histograms
}
soughtValueType := it.Seek(maxt)
if soughtValueType == chunkenc.ValNone {
if it.Err() != nil {