// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
use ;
use CommitVersion;
/// Monotonic watermark of "highest CDC-producer-processed commit version".
///
/// Once `get() >= V`, every `PostCommitEvent` for versions `<= V` has been
/// fully handled by the producer actor, so the cdc table contains the
/// complete set of CDC entries for those versions (with holes only for
/// system-only commits that produced no entry). The compactor reads this
/// watermark to ensure it never packs a block that could have a "hole"
/// later filled in by an in-flight producer write.