File tree 1 file changed +3
-3
lines changed
docs/source/library-user-guide
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
76
76
77
77
### Registering a Scalar UDF
78
78
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.
81
81
82
82
``` rust
83
83
use datafusion :: logical_expr :: {Volatility , create_udf};
@@ -94,7 +94,7 @@ let udf = create_udf(
94
94
);
95
95
```
96
96
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
98
98
[ `create_udf` ] : https://docs.rs/datafusion/latest/datafusion/logical_expr/fn.create_udf.html
99
99
[ `make_scalar_function` ] : https://docs.rs/datafusion/latest/datafusion/physical_expr/functions/fn.make_scalar_function.html
100
100
You can’t perform that action at this time.
0 commit comments