clickhouse-native-client 0.1.0

Async ClickHouse client using the native TCP protocol with LZ4/ZSTD compression and TLS support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! I/O module for block streaming between the client and ClickHouse server.
//!
//! Provides `BlockReader` and `BlockWriter` which bridge async network I/O
//! with the synchronous column serialization/deserialization layer.

/// Block reader/writer for streaming data between client and server.
pub mod block_stream;
pub mod buffer_utils;

pub use block_stream::{
    BlockReader,
    BlockWriter,
};