Skip to content

Commit

Permalink
rename pruner_hi_inclusive to pruner_hi
Browse files Browse the repository at this point in the history
  • Loading branch information
wlmyng committed Oct 18, 2024
1 parent 8d2bb84 commit e98fd98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/sui-indexer/src/models/watermarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ pub struct StoredWatermark {
/// be dropped. The pruner uses this column to determine whether to prune or wait long enough
/// that all in-flight reads complete or timeout before it acts on an updated watermark.
pub timestamp_ms: i64,
/// Column used by the pruner to track its true progress. Data at and below this watermark can
/// be immediately pruned.
pub pruner_hi_inclusive: Option<i64>,
/// Column used by the pruner to track its true progress. Data below this watermark can be
/// immediately pruned.
pub pruner_hi: Option<i64>,
}

impl StoredWatermark {
Expand Down

0 comments on commit e98fd98

Please sign in to comment.