Modules§
- This includes utilities for hashing and murmur3 hashing.
Structs§
- IfExpr is a wrapper around CaseExpr, because
IF(a, b, c)
is semantically equivalent toCASE WHEN a THEN b ELSE c END
. - Implementation of RLIKE operator.
Enums§
- Spark supports three evaluation modes when evaluating expressions, which affect the behavior when processing input values that are invalid or would result in an error, such as divide by zero errors, and also affects behavior when converting between types.
Functions§
- Spark-compatible cast implementation. Defers to DataFusion’s cast where that is known to be compatible, and returns an error when a not supported and not DF-compatible cast is requested.