From e98fd988cb1d9b3fc4cf97e2d9bdd8ae4b7335a2 Mon Sep 17 00:00:00 2001 From: Will Yang Date: Fri, 18 Oct 2024 03:48:33 -0700 Subject: [PATCH] rename pruner_hi_inclusive to pruner_hi --- crates/sui-indexer/src/models/watermarks.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/sui-indexer/src/models/watermarks.rs b/crates/sui-indexer/src/models/watermarks.rs index 79bd014c9a500..a8633837bba75 100644 --- a/crates/sui-indexer/src/models/watermarks.rs +++ b/crates/sui-indexer/src/models/watermarks.rs @@ -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, + /// Column used by the pruner to track its true progress. Data below this watermark can be + /// immediately pruned. + pub pruner_hi: Option, } impl StoredWatermark {