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;
7/// The DataFusion crate version compatible with this integration.
8pub use ::datafusion as engine;
9pub use ts_table_provider::TsTableProvider;
10
11/// Pretty-print helpers for Arrow record batches (used by examples / CLI output).
12pub mod pretty;