[][src]Enum datafusion::error::ExecutionError

pub enum ExecutionError {
    ArrowError(ArrowError),
    ParquetError(ParquetError),
    IoError(Error),
    ParserError(ParserError),
    General(String),
    InvalidColumn(String),
    NotImplemented(String),
    InternalError(String),
    ExecutionError(String),
}

DataFusion error

Variants

ArrowError(ArrowError)

Wraps an error from the Arrow crate

ParquetError(ParquetError)

Wraps an error from the Parquet crate

IoError(Error)

I/O error

ParserError(ParserError)

SQL parser error

General(String)

General error

InvalidColumn(String)

Invalid column error

NotImplemented(String)

Missing functionality

InternalError(String)

Internal error

ExecutionError(String)

Query engine execution error

Implementations

impl ExecutionError[src]

pub fn into_arrow_external_error(self) -> ArrowError[src]

Wraps this ExecutionError in arrow's ExternalError variant.

Trait Implementations

impl Debug for ExecutionError[src]

impl Display for ExecutionError[src]

impl Error for ExecutionError[src]

impl From<&'static str> for ExecutionError[src]

impl From<ArrowError> for ExecutionError[src]

impl From<Error> for ExecutionError[src]

impl From<ParquetError> for ExecutionError[src]

impl From<ParserError> for ExecutionError[src]

impl From<String> for ExecutionError[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> 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>,