Skip to main content

timeseries_table_format/datafusion/
mod.rs

1//! DataFusion integration for `timeseries-table-format`.
2//!
3//! This module is enabled by the `datafusion` feature. The main entry point is
4//! [`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;