iceberg-sql-catalog 0.10.0

Sql catalog for the unofficial Iceberg table format implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use iceberg_rust::error::Error as IcebergError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error(transparent)]
    ParseError(#[from] url::ParseError),
    #[error(transparent)]
    SqlError(#[from] sqlx::Error),
}

impl From<Error> for IcebergError {
    fn from(value: Error) -> Self {
        IcebergError::External(Box::new(value))
    }
}