diff --git a/docs/_sources/functions/presto/aggregate.rst.txt b/docs/_sources/functions/presto/aggregate.rst.txt index fb6176ffe477..aa5f314f9b2e 100644 --- a/docs/_sources/functions/presto/aggregate.rst.txt +++ b/docs/_sources/functions/presto/aggregate.rst.txt @@ -107,7 +107,7 @@ General Aggregate Functions .. function:: max(x) -> [same as input] Returns the maximum value of all input values. - ``x`` must not contains nulls when it is complex type. + ``x`` must not contain nulls when it is complex type. .. function:: max(x, n) -> array<[same as x]> @@ -117,7 +117,7 @@ General Aggregate Functions .. function:: min(x) -> [same as input] Returns the minimum value of all input values. - ``x`` must not contains nulls when it is complex type. + ``x`` must not contain nulls when it is complex type. .. function:: min(x, n) -> array<[same as x]> @@ -193,6 +193,7 @@ General Aggregate Functions .. function:: set_agg(x) -> array<[same as input]> Returns an array created from the distinct input ``x`` elements. + ``x`` must not contain nulls when it is complex type. .. function:: set_union(array(T)) -> array(T) diff --git a/docs/functions/presto/aggregate.html b/docs/functions/presto/aggregate.html index 7110c941d921..248f95b1b59f 100644 --- a/docs/functions/presto/aggregate.html +++ b/docs/functions/presto/aggregate.html @@ -174,7 +174,7 @@

General Aggregate Functions max(x) [same as input]

Returns the maximum value of all input values. -x must not contains nulls when it is complex type.

+x must not contain nulls when it is complex type.

@@ -188,7 +188,7 @@

General Aggregate Functions min(x) [same as input]

Returns the minimum value of all input values. -x must not contains nulls when it is complex type.

+x must not contain nulls when it is complex type.

@@ -271,7 +271,8 @@

General Aggregate Functions
set_agg(x) array<[same as input]>
-

Returns an array created from the distinct input x elements.

+

Returns an array created from the distinct input x elements. +x must not contain nulls when it is complex type.