Skip to content

Commit

Permalink
Fix nif_not_loaded error when Series.ewm_mean/2 is called from query (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sasikumar87 committed Apr 1, 2023
1 parent e70b96b commit e44bc5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion native/explorer/src/expressions.rs
Expand Up @@ -567,7 +567,7 @@ pub fn expr_cumulative_sum(data: ExExpr, reverse: bool) -> ExExpr {
}

#[rustler::nif]
pub fn ewm_mean(
pub fn expr_ewm_mean(
data: ExExpr,
alpha: f64,
adjust: bool,
Expand Down
1 change: 1 addition & 0 deletions native/explorer/src/lib.rs
Expand Up @@ -203,6 +203,7 @@ rustler::init!(
expr_window_mean,
expr_window_min,
expr_window_sum,
expr_ewm_mean,
// inspect expressions
expr_describe_filter_plan,
// string expressions
Expand Down

0 comments on commit e44bc5b

Please sign in to comment.