Skip to content

Commit

Permalink
Fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Sep 8, 2023
1 parent fe24072 commit 93fec0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ scalar_function!(gcd, Gcd);
scalar_function!(initcap, InitCap, "Converts the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters.");
scalar_function!(
isnan,
IsNaN,
Isnan,

Check failure on line 235 in src/functions.rs

View workflow job for this annotation

GitHub Actions / test-matrix (3.10, stable)

no variant or associated item named `Isnan` found for enum `datafusion_expr::BuiltinScalarFunction` in the current scope
"Returns true if a given number is +NaN or -NaN otherwise returns false."
);
scalar_function!(lcm, Lcm);
Expand Down

0 comments on commit 93fec0a

Please sign in to comment.