From 1f6f99286e8e5aac283d81383be3c629e35f3143 Mon Sep 17 00:00:00 2001 From: jmceniery <56210812+jmceniery@users.noreply.github.com> Date: Mon, 20 Apr 2020 23:28:30 +0930 Subject: [PATCH] [DOCS] Remove Wikipedia link from `SUM_OF_SQUARES` SQL function docs (#52398) Removed the link to Wikipedia as the function is not calculating the sum of squares in this way. More can be found here at this issue: https://github.com/elastic/elasticsearch/issues/50416 --- docs/reference/sql/functions/aggs.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/sql/functions/aggs.asciidoc b/docs/reference/sql/functions/aggs.asciidoc index c609a642d4b5e..a6c67812037e4 100644 --- a/docs/reference/sql/functions/aggs.asciidoc +++ b/docs/reference/sql/functions/aggs.asciidoc @@ -536,7 +536,7 @@ SUM_OF_SQUARES(field_name) <1> .Description: -Returns the https://en.wikipedia.org/wiki/Total_sum_of_squares[sum of squares] of input values in the field `field_name`. +Returns the sum of squares of input values in the field `field_name`. ["source","sql",subs="attributes,macros"] --------------------------------------------------