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::Sortinto a correspondingPhysicalSortExpr. Returns an error if the given logical expression is not aExpr::Sort.
Type Aliases§
LexOrderingis an alias for the typeVec<PhysicalSortExpr>, which represents a lexicographical ordering.LexOrderingRefis an alias for the type &[PhysicalSortExpr], which represents a reference to a lexicographical ordering.LexRequirementis an alias for the typeVec<PhysicalSortRequirement>, which represents a lexicographical ordering requirement.LexRequirementRefis an alias for the type &[PhysicalSortRequirement], which represents a reference to a lexicographical ordering requirement.