timeseries-table-datafusion 0.1.2

DataFusion SQL integration for timeseries-table-core tables (TableProvider + segment pruning).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! DataFusion integration for `timeseries-table-core`.
//!
//! This crate intentionally keeps all DataFusion types out of `timeseries-table-core`.
//! The main entry point is [`TsTableProvider`].

mod ts_table_provider;
pub use ts_table_provider::TsTableProvider;
/// Test-only helpers for integration tests that need internal predicate logic.
pub mod test_utils;

/// Pretty-print helpers for Arrow record batches (used by examples / CLI output).
pub mod pretty;