clickhouse-arrow 0.2.1

ClickHouse Arrow Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ## Logic for interfacing between internal 'native' types and `ClickHouse`
pub mod block;
pub mod block_info;
pub(crate) mod client_info;
pub mod convert;
pub mod error_codes;
pub mod progress;
pub(crate) mod protocol;
pub mod types;
pub mod values;

pub use self::error_codes::{ServerError, Severity};
pub use self::protocol::CompressionMethod;