clickhouse-types 0.1.2

Data types utils to use with Native and RowBinary(WithNamesAndTypes) formats in ClickHouse
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
#[doc(hidden)]
pub enum TypesError {
    #[error("not enough data: {0}")]
    NotEnoughData(String),
    #[error("type parsing error: {0}")]
    TypeParsingError(String),
    #[error("unexpected empty list of columns")]
    EmptyColumns,
}