Skip to content

Commit fb7b32c

Browse files
convert window function cume_dist to udwf
Ref: apache/datafusion#12695
1 parent 901d48e commit fb7b32c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ pub fn cume_dist(
826826
partition_by: Option<Vec<PyExpr>>,
827827
order_by: Option<Vec<PySortExpr>>,
828828
) -> PyResult<PyExpr> {
829-
let window_fn = window_function::cume_dist();
829+
let window_fn = datafusion::functions_window::expr_fn::cume_dist();
830830

831831
add_builder_fns_to_window(window_fn, partition_by, None, order_by, None)
832832
}

0 commit comments

Comments
 (0)