Expand description
UnwrapCastInComparison rewrites CAST(col) = lit to col = CAST(lit)
Structsยง
- Unwrap
Cast InComparison UnwrapCastInComparisonattempts to remove casts from comparisons to literals (ScalarValues) by applying the casts to the literals if possible. It is inspired by the optimizer ruleUnwrapCastInBinaryComparisonof Spark.