clickhouse-arrow 0.1.2

ClickHouse Arrow Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod arrow_helpers;
pub mod constants;
pub mod native_helpers;

pub const SEP: &str = "\n-------------------------------\n";

/// Little helper function to print headers for tests
pub fn header(qid: impl std::fmt::Display, msg: impl AsRef<str>) {
    eprintln!("{SEP} Query ID = {qid}\n {} {SEP}", msg.as_ref());
}