Module datafusion_physical_expr_common::utils
source · Functions§
- Converts
datafusion_expr::Exprinto correspondingArc<dyn PhysicalExpr>. If conversion is not supported yet, returns Error. - Reverses the ORDER BY expression, which is useful during equivalent window expression construction. For instance, ‘ORDER BY a ASC, NULLS LAST’ turns into ‘ORDER BY a DESC, NULLS FIRST’.
- Scatter
truthyarray by boolean mask. When the mask evaluatestrue, next values oftruthyare taken, when the mask evaluatesfalsevalues null values are filled.
Type Aliases§
- Represents a
PhysicalExprnode with associated properties (order and range) in a context where properties are tracked.