clickhouse-datafusion 0.2.0

High-performance ClickHouse integration for Apache DataFusion with federation support
Documentation
#![doc = include_str!("../README.md")]
pub mod analyzer;
mod builders;
mod connection;
mod context;
pub mod dialect;
#[cfg(feature = "federation")]
pub mod federation;
pub mod prelude;
pub mod providers;
mod sink;
pub mod sql;
pub mod stream;
pub mod udfs;
pub mod utils;

pub use builders::*;
pub use connection::*;
// Builders, utilities, traits, and implementations for bridging `ClickHouse`, through
// [`clickhouse_arrow`], and [`DataFusion`](https://docs.rs/datafusion/latest/datafusion/)
//
// The simplest way to use `ClickHouse` in `DataFusion` is to use the builder
// [`ClickHouseBuilder`].
//
// If the "federation" feature is enabled then `ClickHouse` databases and
// tables can be queried and joined across non-ClickHouse sources.
pub use context::*;
pub use providers::*;
pub use sink::*;

#[cfg(feature = "test-utils")]
mod dev_deps {
    use {tokio as _, tracing_subscriber as _};
}