Skip to main content Module if_func Copy item path Source IfFunction MySQL-compatible IF function: IF(condition, true_value, false_value) NAME ๐ array_to_bool ๐ Convert an Array to BooleanArray using MySQL truthy rules float_array_to_bool ๐ Convert a float PrimitiveArray to BooleanArray using MySQL truthy rules:
NULL -> false, 0 (including -0.0) -> false, NaN -> true, other non-zero -> true int_array_to_bool ๐ Convert an integer PrimitiveArray to BooleanArray using MySQL truthy rules:
NULL -> false, 0 -> false, non-zero -> true to_boolean_array ๐ Convert a ColumnarValue to a BooleanArray using MySQL truthy rules: