Enum sql::plan::PlanError[][src]

pub enum PlanError {
Show 18 variants Unsupported { feature: String, issue_no: Option<usize>, }, UnknownColumn { table: Option<PartialName>, column: ColumnName, }, UngroupedColumn { table: Option<PartialName>, column: ColumnName, }, WrongJoinTypeForLateralColumn { table: Option<PartialName>, column: ColumnName, }, AmbiguousColumn(ColumnName), AmbiguousTable(PartialName), UnknownColumnInUsingClause { column: ColumnName, join_side: JoinSide, }, AmbiguousColumnInUsingClause { column: ColumnName, join_side: JoinSide, }, MisqualifiedName(String), OverqualifiedDatabaseName(String), OverqualifiedSchemaName(String), SubqueriesDisallowed { context: String, }, UnknownParameter(usize), RecursionLimit(RecursionLimitError), Parse(ParseError), Catalog(CatalogError), UpsertSinkWithoutKey, Unstructured(String),
}

Variants

Unsupported

Fields

feature: String
issue_no: Option<usize>

UnknownColumn

Fields

column: ColumnName

UngroupedColumn

Fields

column: ColumnName

WrongJoinTypeForLateralColumn

Fields

column: ColumnName

AmbiguousColumn(ColumnName)

Tuple Fields

AmbiguousTable(PartialName)

Tuple Fields

UnknownColumnInUsingClause

Fields

column: ColumnName
join_side: JoinSide

AmbiguousColumnInUsingClause

Fields

column: ColumnName
join_side: JoinSide

MisqualifiedName(String)

Tuple Fields

0: String

OverqualifiedDatabaseName(String)

Tuple Fields

0: String

OverqualifiedSchemaName(String)

Tuple Fields

0: String

SubqueriesDisallowed

Fields

context: String

UnknownParameter(usize)

Tuple Fields

0: usize

RecursionLimit(RecursionLimitError)

Tuple Fields

Parse(ParseError)

Tuple Fields

Catalog(CatalogError)

Tuple Fields

UpsertSinkWithoutKey

Unstructured(String)

Tuple Fields

0: String

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. 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

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Formats an object with the “alternative” format ({:#}) and returns it.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Upcasts this ProgressEventTimestamp to Any. Read more

Returns the name of the concrete type of this object. Read more

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more