File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/source/library-user-guide Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ The challenge however is that DataFusion doesn't know about this function. We ne
7676
7777### Registering a Scalar UDF
7878
79- To register a Scalar UDF, you need to wrap the function implementation in a [ ` ScalarUDF ` ] struct and then register it with the ` SessionContext ` .
80- DataFusion provides the [ ` create_udf ` ] and helper functions to make this easier.
79+ To register a Scalar UDF, you need to wrap the function implementation in a [ ` ScalarUDF ` ] struct and then register it with the ` SessionContext ` .
80+ DataFusion provides the [ ` create_udf ` ] and helper functions to make this easier.
8181
8282``` rust
8383use datafusion :: logical_expr :: {Volatility , create_udf};
@@ -94,7 +94,7 @@ let udf = create_udf(
9494);
9595```
9696
97- [ `ScalarUDF ` ] : https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.ScalarUDF.html
97+ [ `scalarudf ` ] : https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.ScalarUDF.html
9898[ `create_udf` ] : https://docs.rs/datafusion/latest/datafusion/logical_expr/fn.create_udf.html
9999[ `make_scalar_function` ] : https://docs.rs/datafusion/latest/datafusion/physical_expr/functions/fn.make_scalar_function.html
100100
You can’t perform that action at this time.
0 commit comments