Struct transform::join_implementation::Orderer[][src]

struct Orderer<'a> {
Show 13 fields inputs: usize, equivalences: &'a [Vec<MirScalarExpr>], arrangements: &'a [Vec<Vec<MirScalarExpr>>], unique_keys: &'a [Vec<Vec<usize>>], input_mapper: &'a JoinInputMapper, reverse_equivalences: Vec<Vec<(usize, usize)>>, unique_arrangement: Vec<Vec<bool>>, order: Vec<(Characteristics, Vec<MirScalarExpr>, usize)>, placed: Vec<bool>, bound: Vec<Vec<MirScalarExpr>>, equivalences_active: Vec<bool>, arrangement_active: Vec<Vec<usize>>, priority_queue: BinaryHeap<(Characteristics, Vec<MirScalarExpr>, usize)>,
}

Fields

inputs: usizeequivalences: &'a [Vec<MirScalarExpr>]arrangements: &'a [Vec<Vec<MirScalarExpr>>]unique_keys: &'a [Vec<Vec<usize>>]input_mapper: &'a JoinInputMapperreverse_equivalences: Vec<Vec<(usize, usize)>>unique_arrangement: Vec<Vec<bool>>order: Vec<(Characteristics, Vec<MirScalarExpr>, usize)>placed: Vec<bool>bound: Vec<Vec<MirScalarExpr>>equivalences_active: Vec<bool>arrangement_active: Vec<Vec<usize>>priority_queue: BinaryHeap<(Characteristics, Vec<MirScalarExpr>, usize)>

Implementations

Introduces a specific input and keys to the order, along with its characteristics.

This method places a next element in the order, and updates the associated state about other candidates, including which columns are now bound and which potential keys are available to consider (both arranged, and unarranged).

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

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.

Should always be Self

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