From f6850038b6b4fe1d4a4bde58769e9c246964aded Mon Sep 17 00:00:00 2001 From: Jim Galasyn Date: Mon, 13 Jun 2022 15:36:31 -0700 Subject: [PATCH] docs: update UdfSchemaProvider method argument (DOCS-11900) (#9198) --- docs/reference/user-defined-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/user-defined-functions.md b/docs/reference/user-defined-functions.md index 02d814f19627..35b8b260f6af 100644 --- a/docs/reference/user-defined-functions.md +++ b/docs/reference/user-defined-functions.md @@ -230,7 +230,7 @@ type, like `DECIMAL` or `STRUCT`. For example, a UDF that returns precision and scale of the output based on the input schema. To use this functionality, you need to specify a method with signature -`public SqlType (final List params)` and +`public SqlType (final List params)` and annotate it with `@UdfSchemaProvider`. Also, you need to link it to the corresponding UDF by using the `schemaProvider=` parameter of the `@Udf` annotation.