Module unwrap_cast_in_comparison

Source
Expand description

UnwrapCastInComparison rewrites CAST(col) = lit to col = CAST(lit)

Structsยง

UnwrapCastInComparison
UnwrapCastInComparison attempts to remove casts from comparisons to literals (ScalarValues) by applying the casts to the literals if possible. It is inspired by the optimizer rule UnwrapCastInBinaryComparison of Spark.