Module if_func

Module if_func 

Source

Structsยง

IfFunction
MySQL-compatible IF function: IF(condition, true_value, false_value)

Constantsยง

NAME ๐Ÿ”’

Functionsยง

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: