When not going through pre-binned the read bytes are exact
This commit is contained in:
5
disk/src/cache/pbv.rs
vendored
5
disk/src/cache/pbv.rs
vendored
@@ -112,7 +112,10 @@ impl PreBinnedValueStream {
|
||||
match k {
|
||||
Ok(Values(k)) => Ok(PreBinnedItem::Batch(k)),
|
||||
Ok(RangeComplete) => Ok(PreBinnedItem::RangeComplete),
|
||||
Ok(EventDataReadStats(stats)) => Ok(PreBinnedItem::EventDataReadStats(stats)),
|
||||
Ok(EventDataReadStats(stats)) => {
|
||||
info!("PreBinnedValueStream ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ ✙ stats {:?}", stats);
|
||||
Ok(PreBinnedItem::EventDataReadStats(stats))
|
||||
}
|
||||
Ok(Log(item)) => Ok(PreBinnedItem::Log(item)),
|
||||
Err(e) => Err(e),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user