Create a new PhysicalSortExpr
(expr: Arc<dyn PhysicalExpr>, options: SortOptions)
| 87 | impl PhysicalSortExpr { |
| 88 | /// Create a new PhysicalSortExpr |
| 89 | pub fn new(expr: Arc<dyn PhysicalExpr>, options: SortOptions) -> Self { |
| 90 | Self { expr, options } |
| 91 | } |
| 92 | |
| 93 | /// Create a new PhysicalSortExpr with default [`SortOptions`] |
| 94 | pub fn new_default(expr: Arc<dyn PhysicalExpr>) -> Self { |