Skip to content

Commit cb41d79

Browse files
author
Shiv Bhatia
committed
rename to isnan instead of is_nan
1 parent 00dbb9c commit cb41d79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

datafusion/spark/src/function/math/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub mod bin;
2020
pub mod expm1;
2121
pub mod factorial;
2222
pub mod hex;
23-
pub mod is_nan;
23+
pub mod isnan;
2424
pub mod modulus;
2525
pub mod negative;
2626
pub mod rint;
@@ -45,7 +45,7 @@ make_udf_function!(trigonometry::SparkCsc, csc);
4545
make_udf_function!(trigonometry::SparkSec, sec);
4646
make_udf_function!(negative::SparkNegative, negative);
4747
make_udf_function!(bin::SparkBin, bin);
48-
make_udf_function!(is_nan::SparkIsNaN, isnan);
48+
make_udf_function!(isnan::SparkIsNaN, isnan);
4949

5050
pub mod expr_fn {
5151
use datafusion_functions::export_functions;

0 commit comments

Comments
 (0)