You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR updates the function definitions and inline docs based on the
latest metadata from Elasticsearch.
---------
Co-authored-by: Stratoula Kalafateli <[email protected]>
Copy file name to clipboardExpand all lines: src/platform/packages/private/kbn-language-documentation/src/sections/generated/aggregation_functions.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -477,7 +477,7 @@ export const functions = {
477
477
-->
478
478
479
479
### VALUES
480
-
Returns all values in a group as a multivalued field. The order of the returned values isn’t guaranteed. If you need the values returned in order use esql-mv_sort.
480
+
Returns all values in a group as a multivalued field. The order of the returned values isn’t guaranteed. If you need the values returned in order use \`MV_SORT\`.
Copy file name to clipboardExpand all lines: src/platform/packages/private/kbn-language-documentation/src/sections/generated/scalar_functions.tsx
+33-29Lines changed: 33 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ export const functions = {
71
71
-->
72
72
73
73
### ACOS
74
-
Returns the arccosine of \`n\` as an angle, expressed in radians.
74
+
Returns the [arccosine](https://en.wikipedia.org/wiki/Inverse_trigonometric_functions) of \`n\` as an angle, expressed in radians.
75
75
76
76
\`\`\` esql
77
77
ROW a=.9
@@ -102,7 +102,7 @@ export const functions = {
102
102
-->
103
103
104
104
### ASIN
105
-
Returns the arcsine of the input
105
+
Returns the [arcsine](https://en.wikipedia.org/wiki/Inverse_trigonometric_functions) of the input
106
106
numeric expression as an angle, expressed in radians.
107
107
108
108
\`\`\` esql
@@ -134,7 +134,7 @@ export const functions = {
134
134
-->
135
135
136
136
### ATAN
137
-
Returns the arctangent of the input
137
+
Returns the [arctangent](https://en.wikipedia.org/wiki/Inverse_trigonometric_functions) of the input
138
138
numeric expression as an angle, expressed in radians.
139
139
140
140
\`\`\` esql
@@ -168,7 +168,7 @@ export const functions = {
168
168
-->
169
169
170
170
### ATAN2
171
-
The angle between the positive x-axis and the ray from the
171
+
The [angle](https://en.wikipedia.org/wiki/Atan2) between the positive x-axis and the ray from the
172
172
origin to the point (x , y) in the Cartesian plane, expressed in radians.
173
173
174
174
\`\`\` esql
@@ -353,7 +353,7 @@ export const functions = {
353
353
ROW a=1.8
354
354
| EVAL a=CEIL(a)
355
355
\`\`\`
356
-
Note: This is a noop for \`long\` (including unsigned) and \`integer\`. For \`double\` this picks the closest \`double\` value to the integer similar to Math.ceil.
356
+
Note: This is a noop for \`long\` (including unsigned) and \`integer\`. For \`double\` this picks the closest \`double\` value to the integer similar to [Math.ceil](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Math.html#ceil(double)).
357
357
`,
358
358
description:
359
359
'Text is in markdown. Do not translate function names, special characters, or field names like sum(bytes)',
@@ -483,7 +483,7 @@ export const functions = {
483
483
-->
484
484
485
485
### COS
486
-
Returns the cosine of an angle.
486
+
Returns the [cosine](https://en.wikipedia.org/wiki/Sine_and_cosine) of an angle.
487
487
488
488
\`\`\` esql
489
489
ROW a=1.8
@@ -514,7 +514,7 @@ export const functions = {
514
514
-->
515
515
516
516
### COSH
517
-
Returns the hyperbolic cosine of a number.
517
+
Returns the [hyperbolic cosine](https://en.wikipedia.org/wiki/Hyperbolic_functions) of a number.
0 commit comments