Skip to content

Commit 398a770

Browse files
committed
Make BlobMetadata.length a u64 (instead of usize)
1 parent 342071e commit 398a770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/iceberg/src/puffin/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub(crate) struct BlobMetadata {
4444
/// The offset in the file where the blob contents start
4545
pub(crate) offset: u64,
4646
/// The length of the blob stored in the file (after compression, if compressed)
47-
pub(crate) length: usize,
47+
pub(crate) length: u64,
4848
/// The compression codec used to compress the data
4949
#[serde(skip_serializing_if = "CompressionCodec::is_none")]
5050
#[serde(default)]

0 commit comments

Comments
 (0)