pub enum DataFusionError {
Show 13 variants ArrowError(ArrowError), ParquetError(ParquetError), ObjectStore(Error), IoError(Error), SQL(ParserError), NotImplemented(String), Internal(String), Plan(String), SchemaError(SchemaError), Execution(String), ResourcesExhausted(String), External(Box<dyn Error + Sync + Send + 'static, Global>), Context(StringBox<DataFusionError, Global>),
}
Expand description

DataFusion error

Variants

ArrowError(ArrowError)

Error returned by arrow.

ParquetError(ParquetError)

Wraps an error from the Parquet crate

ObjectStore(Error)

Wraps an error from the object_store crate

IoError(Error)

Error associated to I/O operations and associated traits.

SQL(ParserError)

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.

SchemaError(SchemaError)

This error happens with schema-related errors, such as 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.

ResourcesExhausted(String)

This error is thrown when a consumer cannot acquire memory from the Memory Manager we can just cancel the execution of the partition.

External(Box<dyn Error + Sync + Send + 'static, Global>)

Errors originating from outside DataFusion’s core codebase. For example, a custom S3Error from the crate datafusion-objectstore-s3

Context(StringBox<DataFusionError, Global>)

Error with additional context

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0: use the Display impl or to_string()
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
Should always be Self
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.