Skip to main content

timeseries_table_format/
metadata.rs

1//! Metadata layer.
2//!
3//! This module groups **pure** metadata data types and validation logic.
4//!
5//! It must not depend on storage backends or perform IO. IO-heavy modules (log
6//! replay, storage access, Parquet scanning, etc.) should live in higher layers
7//! such as `transaction_log`, `storage`, and `table`.
8
9pub mod index;
10pub mod logical_schema;
11pub mod protocol;
12pub mod schema_compat;
13pub mod segments;
14pub mod table;
15
16/// Convenience re-exports for the metadata "model" surface.
17pub mod model;