pub enum ExecutorError {
Show 29 variants
Core(Error),
TableNotFound(String),
TableAlreadyExists(String),
IndexNotFound(String),
IndexAlreadyExists(String),
ColumnNotFound(String),
ConstraintViolation(ConstraintViolation),
Evaluation(EvaluationError),
UnsupportedOperation(String),
TransactionConflict,
ReadOnlyTransaction {
operation: String,
},
Storage(StorageError),
ColumnRequired {
column: String,
},
InvalidIndexName {
name: String,
reason: String,
},
InvalidOperation {
operation: String,
reason: String,
},
FileNotFound(String),
PathValidationFailed {
path: String,
reason: String,
},
UnsupportedFormat(String),
SchemaMismatch {
expected: usize,
actual: usize,
reason: String,
},
InvalidStorageType(String),
InvalidCompression(String),
InvalidRowGroupSize(String),
InvalidRowIdMode(String),
UnknownTableOption(String),
DuplicateOption(String),
Vector(VectorError),
BulkLoad(String),
Columnar(String),
Planner(PlannerError),
}Expand description
Errors that can occur during SQL execution.
Variants§
Core(Error)
Underlying HNSW/kv error.
TableNotFound(String)
Table not found in catalog.
TableAlreadyExists(String)
Table already exists in catalog.
IndexNotFound(String)
Index not found in catalog.
IndexAlreadyExists(String)
Index already exists in catalog.
ColumnNotFound(String)
Column not found in table.
ConstraintViolation(ConstraintViolation)
Constraint violation during DML operation.
Evaluation(EvaluationError)
Expression evaluation error.
UnsupportedOperation(String)
Unsupported SQL operation.
TransactionConflict
Transaction conflict (concurrent modification).
ReadOnlyTransaction
Read-only トランザクションで書き込み操作を実行しようとした。
Storage(StorageError)
Storage layer error.
ColumnRequired
Column value required (DEFAULT not supported in v0.1.2).
InvalidIndexName
Invalid index name (reserved prefix).
InvalidOperation
Invalid operation.
FileNotFound(String)
Input file not found.
PathValidationFailed
File path failed validation.
UnsupportedFormat(String)
Unsupported file format.
SchemaMismatch
Schema mismatch between input and table.
InvalidStorageType(String)
Invalid storage type option.
InvalidCompression(String)
Invalid compression option.
InvalidRowGroupSize(String)
Invalid row group size option.
InvalidRowIdMode(String)
Invalid rowid_mode option.
UnknownTableOption(String)
Unknown table option key.
DuplicateOption(String)
Duplicate option key.
Vector(VectorError)
Vector processing error.
BulkLoad(String)
Bulk load generic error.
Columnar(String)
Columnar engine error.
Planner(PlannerError)
Planner error (wrapped for convenience).