Fix return statement.
This commit is contained in:
parent
90eb0555df
commit
8e64e8dfca
|
@ -348,6 +348,7 @@ func (acc *deltaEncodedIndexAccessor) sampleValueAtIndex(idx int) model.SampleVa
|
||||||
// No d8 for ints.
|
// No d8 for ints.
|
||||||
default:
|
default:
|
||||||
acc.lastErr = fmt.Errorf("invalid number of bytes for integer delta: %d", acc.vBytes)
|
acc.lastErr = fmt.Errorf("invalid number of bytes for integer delta: %d", acc.vBytes)
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
switch acc.vBytes {
|
switch acc.vBytes {
|
||||||
|
|
Loading…
Reference in New Issue