Expand description
Sort expressions
Structs§
- Represents Sort operation for a column in a RecordBatch
- Represents sort requirement associated with a plan
Functions§
- Converts each
Expr::Sort
into a correspondingPhysicalSortExpr
. Returns an error if the given logical expression is not aExpr::Sort
.
Type Aliases§
LexOrdering
is an alias for the typeVec<PhysicalSortExpr>
, which represents a lexicographical ordering.LexOrderingRef
is an alias for the type &[PhysicalSortExpr]
, which represents a reference to a lexicographical ordering.LexRequirement
is an alias for the typeVec<PhysicalSortRequirement>
, which represents a lexicographical ordering requirement.LexRequirementRef
is an alias for the type &[PhysicalSortRequirement]
, which represents a reference to a lexicographical ordering requirement.