When not going through pre-binned the read bytes are exact

This commit is contained in:
Dominik Werder
2021-05-06 18:25:45 +02:00
parent af9c11bdd8
commit a89e1cfc50
4 changed files with 6 additions and 6 deletions

View File

@@ -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),
}