You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scalar_expr!(NullIf, nullif, arg_1 arg_2,"returns NULL if value1 equals value2; otherwise it returns value1. This can be used to perform the inverse operation of the COALESCE expression.");
569
568
scalar_expr!(Power, power, base exponent,"`base` raised to the power of `exponent`");
570
569
scalar_expr!(Atan2, atan2, y x,"inverse tangent of a division given in the argument");
571
570
scalar_expr!(
@@ -926,12 +925,6 @@ scalar_expr!(Now, now, ,"returns current timestamp in nanoseconds, using the sam
926
925
scalar_expr!(CurrentTime, current_time,,"returns current UTC time as a [`DataType::Time64`] value");
927
926
scalar_expr!(MakeDate, make_date, year month day,"make a date from year, month and day component parts");
928
927
scalar_expr!(Nanvl, nanvl, x y,"returns x if x is not NaN otherwise returns y");
929
-
scalar_expr!(
930
-
Isnan,
931
-
isnan,
932
-
num,
933
-
"returns true if a given number is +NaN or -NaN otherwise returns false"
// Export the functions out of this package, both as expr_fn as well as a list of functions
26
+
export_functions!(
27
+
(nullif, arg_1 arg_2,"returns NULL if value1 equals value2; otherwise it returns value1. This can be used to perform the inverse operation of the COALESCE expression.")
28
+
);
19
29
20
-
/// Currently supported types by the nullif function.
21
-
/// The order of these types correspond to the order on which coercion applies
22
-
/// This should thus be from least informative to most informative
0 commit comments