Skip to content

Commit

Permalink
Merge branch 'main' into version-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap authored Jul 7, 2024
2 parents 44d7684 + 3086e9a commit 6ee403b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
crates/ @wjones127 @roeap @rtyler
crates/ @wjones127 @roeap @rtyler @hntd187
delta-inspect/ @wjones127 @rtyler
proofs/ @houqp
python/ @wjones127 @fvaleye @roeap @ion-elgreco
Expand Down
6 changes: 3 additions & 3 deletions crates/core/src/kernel/snapshot/log_segment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,13 +373,13 @@ struct CheckpointMetadata {
#[allow(unreachable_pub)] // used by acceptance tests (TODO make an fn accessor?)
pub version: i64,
/// The number of actions that are stored in the checkpoint.
pub(crate) size: i32,
pub(crate) size: i64,
/// The number of fragments if the last checkpoint was written in multiple parts.
pub(crate) parts: Option<i32>,
/// The number of bytes of the checkpoint.
pub(crate) size_in_bytes: Option<i32>,
pub(crate) size_in_bytes: Option<i64>,
/// The number of AddFile actions in the checkpoint.
pub(crate) num_of_add_files: Option<i32>,
pub(crate) num_of_add_files: Option<i64>,
/// The schema of the checkpoint file.
pub(crate) checkpoint_schema: Option<Schema>,
/// The checksum of the last checkpoint JSON.
Expand Down

0 comments on commit 6ee403b

Please sign in to comment.