Enumeration
DataFusionError
since: 10.0.0
Description [src]
The error codes are used by all datafusion-glib functions.
They are corresponding to DFErrorCode
values.
Available since: 10.0.0
Members
Name | Description |
---|---|
GDF_ERROR_ARROW |
Error returned by arrow crate. |
GDF_ERROR_PARQUET |
Error returned by parquet crate. |
GDF_ERROR_AVRO |
Error returned by avro-rs crate. |
GDF_ERROR_OBJECT_STORE |
Error returned by object_store crate. |
GDF_ERROR_IO |
Error associated to I/O operations and associated traits. |
GDF_ERROR_SQL |
Error returned when SQL is syntactically incorrect. |
GDF_ERROR_NOT_IMPLEMENTED |
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. |
GDF_ERROR_INTERNAL |
Error returned as a consequence of an error in DataFusion. This error should not happen in normal usage of DataFusion. |
GDF_ERROR_PLAN |
This error happens whenever a plan is not valid. Examples include impossible casts. |
GDF_ERROR_SCHEMA |
This error happens with schema-related errors, such as schema inference not possible and non-unique column names. |
GDF_ERROR_EXECUTION |
Error returned during execution of the query. Examples include files not found, errors in parsing certain types. |
GDF_ERROR_RESOURCES_EXHAUSTED |
This error is thrown when a consumer cannot acquire memory from the Memory Manager we can just cancel the execution of the partition. |
GDF_ERROR_EXTERNAL |
For example, a custom S3Error from the crate datafusion-objectstore-s3. |
GDF_ERROR_JIT |
Error occurs during code generation. |