radixdb-storage 1.1.0

Storage contracts and physical persistence engine for RadixDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::RecoveryLimits;

#[test]
fn default_limits_use_the_closed_format_ceilings() {
    let limits = RecoveryLimits::default();
    assert_eq!(
        limits.reachability(),
        crate::v6::ReachabilityLimits::default()
    );
    assert_eq!(
        limits.catalog_wal(),
        crate::v6::CatalogWalReplayLimits::hard()
    );
}