timeseries-table-datafusion 0.1.1

DataFusion SQL integration for timeseries-table-core tables (TableProvider + segment pruning).
Documentation
1
2
3
4
5
6
7
8
9
//! 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;