mod context;
mod derived;
mod row_columnar_cache;
mod row_decoded_column_cache;
mod reader;
mod tracked_head;
pub(crate) mod typed_slots;
#[cfg(test)]
pub(crate) use tracked_head::{head_decode_row_pk_probe, hot_decode_row_pk_probe};
mod types;
pub(crate) mod visibility;
pub(crate) use crate::row_columnar::{
ROW_COLUMNAR_ROW_PK_FIELD, ROW_COLUMNAR_LOSSLESS_SNAPSHOT_METADATA_KEY,
RowColumnarWriteSets, row_group_set_id,
};
#[allow(unused_imports)]
pub(crate) use context::{
BranchHeadControlCache, GlobalKeyValueRowCache, HotStateContext, HotStateContextReader,
};
pub(crate) use row_columnar_cache::{
RowColumnarArrayBudget, RowColumnarShadowMaskCache, RowColumnarShadowMaskKey,
};
pub(crate) use row_decoded_column_cache::RowDecodedColumnCache;
#[cfg(test)]
pub(crate) use reader::load_exact_batch_via_scan_for_test;
#[allow(unused_imports)]
pub(crate) use reader::{HotStateReadDomain, HotStateReader};
#[cfg(test)]
pub(crate) use tracked_head::TrackedHeadDeltaRef;
#[cfg(test)]
pub(crate) use tracked_head::WORKING_DIFF_PATH_HITS;
#[cfg(test)]
pub(crate) use tracked_head::hot_generation_scope_prefix;
pub(crate) use tracked_head::stage_collect_stale_working_diff_indexes;
pub(crate) use tracked_head::stage_retire_hot_generation;
#[cfg(any(test, feature = "storage-benches"))]
#[allow(unused_imports)]
pub(crate) use tracked_head::{
BROAD_CANONICAL_CREATED_AT_HITS, BROAD_CANONICAL_CREATED_AT_KEYS,
BROAD_CANONICAL_CREATED_AT_LOOKUPS, COMPACTED_TOMBSTONE_CANDIDATES,
COMPACTED_TOMBSTONE_COMPACTED, COMPACTED_TOMBSTONE_OFFERED, COMPACTED_TOMBSTONE_ROUTES,
HOT_SCAN_DECODED_ENTRIES, HOT_SCAN_MATCHED_ENTRIES, HOT_SCAN_TOMBSTONE_ENTRIES,
INTERVAL_LOCAL_TOMBSTONE_CANDIDATES, INTERVAL_LOCAL_TOMBSTONE_ELIDED,
INTERVAL_LOCAL_TOMBSTONE_OFFERED, INTERVAL_LOCAL_TOMBSTONE_ROUTES,
};
#[allow(unused_imports)]
pub(crate) use tracked_head::{
CERTIFIED_ROW_BATCH_MANIFEST_SPACE, CERTIFIED_ROW_BATCH_PAGE_SPACE,
CERTIFIED_ROW_BATCH_SPACE, COLLECTION_CONTROL_SPACE, CertifiedCurrentStatePredecessor,
CertifiedCurrentStatePredecessorRef, CertifiedRowBatchFileRef, ColumnarBaseCoordinate,
CurrentStateDeltaRef, DIFF_SPACE, DeferredFreshHotPlan, DeferredFreshHotRowRef,
DeferredFreshHotRows, RowColumnarOverlayRow, FILE_SPACE, HotIndexEntry, HotIndexValue,
HotTrackedSnapshot, INDEX_SPACE, PACKED_CURRENT_BASE_CONTROL_SPACE, PACKED_CURRENT_BASE_SPACE,
PACKED_CURRENT_EXCLUSIVE_SCHEMA_BASE_SPACE, PackedIdentityMembership, ROOT_CURRENT_BASE_SPACE,
ROW_SPACE, TRACKED_WORKING_DIFF_MARKER_SPACE, TrackedHeadContext, TrackedWorkingDiff,
TrackedWorkingDiffEpoch, WorkingDiffIndexCoverage, load_certified_rows_at_commit,
materialize_certified_root_rows, scan_certified_history_rows, stage_certified_row_batches,
stage_hot_index_entries, stage_tracked_working_diff_epoch,
};
#[allow(unused_imports)]
pub(crate) use types::{
Bound, DeclaredColumnEq, DeclaredColumnRange, HotStateExactBatchRequest,
HotStateExactRowRequest, HotStateFilter,
HotStateProjection, HotStateRowFilter, HotStateRowIdentityRef, HotStateRowRequest,
HotStateScanRequest, MaterializedHotStateBatch, MaterializedHotStateBatchBuilder,
MaterializedHotStateExactBatch, MaterializedHotStateRow, MaterializedHotStateRowRef,
ScanConstraint, ScanField, ScanOperator,
};
#[allow(unused_imports)]
pub(crate) use visibility::{
StagedHotStateRows, VisibilityBranchScope, VisibilityRequest, expanded_branch_ids,
overlay_load_exact_batch, overlay_scan_batch, overlay_scan_tracked_batch,
resolve_visible_batch,
};
#[cfg(test)]
pub(crate) use visibility::{blob_ref_probe_stats, reset_blob_ref_probe_stats};