Skip to main content

timeseries_table_datafusion/
lib.rs

1//! DataFusion integration for `timeseries-table-core`.
2//!
3//! This crate intentionally keeps all DataFusion types out of `timeseries-table-core`.
4//! The main entry point is [`TsTableProvider`].
5
6mod ts_table_provider;
7pub use ts_table_provider::TsTableProvider;
8/// Test-only helpers for integration tests that need internal predicate logic.
9pub mod test_utils;
10
11/// Pretty-print helpers for Arrow record batches (used by examples / CLI output).
12pub mod pretty;