We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef7374 commit 646132bCopy full SHA for 646132b
crates/codec/src/decoding/v7/mod.rs
@@ -31,7 +31,10 @@ pub fn decode_v7(blob: &[u8]) -> Result<Batch, DecodingError> {
31
32
// check version.
33
let version = from_be_bytes_slice_and_advance_buf!(u8, buf);
34
- debug_assert!((version == 7) || (version == 8) || (version == 9) || (version == 10), "incorrect blob version");
+ debug_assert!(
35
+ (version == 7) || (version == 8) || (version == 9) || (version == 10),
36
+ "incorrect blob version"
37
+ );
38
39
let blob_payload_size = from_be_bytes_slice_and_advance_buf!(u32, 3, buf) as usize;
40
0 commit comments