| commit | d7fcea29833a43d2af56d1486e46448ab4261258 | [log] [tgz] |
|---|---|---|
| author | Andy Grove <andygrove73@gmail.com> | Sat Oct 21 11:21:32 2023 -0600 |
| committer | GitHub <noreply@github.com> | Sat Oct 21 11:21:32 2023 -0600 |
| tree | 19613d051aa477cd074d1abff9c445675b35646a | |
| parent | c6a7af590191c7c71e805df826e5ce8535a6f1b9 [diff] |
small clippy fix (#524)
diff --git a/src/functions.rs b/src/functions.rs index be90360..b8c8255 100644 --- a/src/functions.rs +++ b/src/functions.rs
@@ -140,7 +140,7 @@ ctx.and_then(|ctx| { ctx.ctx .udaf(name) - .map(|fun| datafusion_expr::WindowFunction::AggregateUDF(fun)) + .map(datafusion_expr::WindowFunction::AggregateUDF) .ok() }) });