timeseries-table-format 0.6.1

Append-only time-series table format with gap/overlap tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! DataFusion integration for `timeseries-table-format`.
//!
//! This module is enabled by the `datafusion` feature. The main entry point is
//! [`TsTableProvider`].

mod ts_table_provider;
/// The DataFusion crate version compatible with this integration.
pub use ::datafusion as engine;
pub use ts_table_provider::TsTableProvider;

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