Enum datafusion::error::DataFusionError[][src]

pub enum DataFusionError {
    ArrowError(ArrowError),
    ParquetError(ParquetError),
    IoError(Error),
    SQL(ParserError),
    NotImplemented(String),
    Internal(String),
    Plan(String),
    Execution(String),
}

DataFusion error

Variants

ArrowError(ArrowError)

Error returned by arrow.

ParquetError(ParquetError)

Wraps an error from the Parquet crate

IoError(Error)

Error associated to I/O operations and associated traits.

Error returned when SQL is syntactically incorrect.

NotImplemented(String)

Error returned on a branch that we know it is possible but to which we still have no implementation for. Often, these errors are tracked in our issue tracker.

Internal(String)

Error returned as a consequence of an error in DataFusion. This error should not happen in normal usage of DataFusion.

Plan(String)

This error happens whenever a plan is not valid. Examples include impossible casts, schema inference not possible and non-unique column names.

Execution(String)

Error returned during execution of the query. Examples include files not found, errors in parsing certain types.

Implementations

impl DataFusionError[src]

Trait Implementations

impl Debug for DataFusionError[src]

impl Display for DataFusionError[src]

impl Error for DataFusionError[src]

impl From<ArrowError> for DataFusionError[src]

impl From<Error> for DataFusionError[src]

impl From<ParquetError> for DataFusionError[src]

impl From<ParserError> for DataFusionError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,