Skip to content

Commit

Permalink
changed _last_snapshot_ stats to i64 (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockbeard authored Jul 9, 2024
1 parent 43b2f25 commit 9080e39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/src/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ struct CheckpointMetadata {
#[allow(unreachable_pub)] // used by acceptance tests (TODO make an fn accessor?)
pub version: Version,
/// 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 9080e39

Please sign in to comment.