//! On-disk format constants for the columnar snapshot.
pub const MAGIC: & = b"LORACOL1";
pub const DATABASE_SNAPSHOT_MAGIC: & = MAGIC;
pub const FORMAT_VERSION: u32 = 2;
pub const HEADER_LEN: usize = 8 + 4 + 4 + 8 + 32;
/// `2` was the last release before the catalog trailer; readable on this branch
/// for forward compatibility with older snapshots that lack indexes.
pub const BODY_FORMAT_VERSION_V2: u32 = 2;
/// `3` introduced the index-catalog trailer.
pub const BODY_FORMAT_VERSION_V3: u32 = 3;
/// `4` added the constraint-catalog trailer (after indexes).
pub const BODY_FORMAT_VERSION: u32 = 4;