upgrade version check, feature for dropping checkpoints

This commit is contained in:
2025-10-30 13:44:50 -07:00
parent d52598d01d
commit cddbe6bf08
2 changed files with 10 additions and 1 deletions
+5
View File
@@ -825,6 +825,11 @@ impl Frame {
}
output
}
pub fn drop_checkpoint(&mut self) {
self.checkpoint_bytes.clear();
self.checkpoint_compression = Compression::None;
self.checkpoint_encoding = Encoding::Raw;
}
}
impl Default for Frame {