use BTreeMap;
use crateSnapshotProvider;
use crateRowMap;
use crateTableName;
/// In-memory implementation of [`SnapshotProvider`].
///
/// Wraps the `BTreeMap<table_name, Vec<RowMap>>` returned by
/// `diffly::snapshot()` and makes it usable as a `SnapshotProvider` for
/// `diffly::run_with_conflicts()`.
/// ```
;