timeseries-table-format 0.6.0

Append-only time-series table format with gap/overlap tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Metadata model types.
//!
//! Convenience re-exports over [`crate::metadata`] submodules.

pub use crate::metadata::{
    index::{
        IndexKind, IndexSpec, IndexSpecError, IndexValue, IndexValueError,
        ParseTimeIndexGranularityError, TimeIndexGranularity, validate_index_range,
    },
    logical_schema::{
        LogicalDataType, LogicalField, LogicalSchema, LogicalSchemaValidationError,
        LogicalTimestampUnit, LogicalToArrowSchemaError,
    },
    protocol::{TABLE_PROTOCOL_VERSION, TableProtocolError},
    segments::{FileFormat, SegmentEntityLayout, SegmentMeta, SegmentMetaError},
    table::{TableArrowSchemaError, TableKind, TableMeta, TableMetaDelta},
};