Skip to content

Commit

Permalink
Merge branch 'main' into task_cancel_fail
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Aug 25, 2023
2 parents 8224028 + 9a3f24f commit cc0a6f2
Show file tree
Hide file tree
Showing 195 changed files with 3,593 additions and 1,075 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/97409.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 97409
summary: Trim stored fields for `_id` field in tsdb
area: TSDB
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/97972.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 97972
summary: Automatically flatten objects when subobjects:false
area: Mapping
type: enhancement
issues:
- 88934
6 changes: 6 additions & 0 deletions docs/changelog/98808.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 98808
summary: Set default index mode for `TimeSeries` to `null`
area: Aggregations
type: enhancement
issues:
- 97429
5 changes: 5 additions & 0 deletions docs/changelog/98844.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 98844
summary: Add accessors required to recreate `TransformStats` object from the fields
area: Transform
type: enhancement
issues: []
7 changes: 7 additions & 0 deletions docs/reference/esql/functions/abs.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[[esql-abs]]
=== `ABS`
[.text-center]
image::signature/abs.svg[]

Returns the absolute value.

[source,esql]
Expand All @@ -8,3 +11,7 @@ FROM employees
| KEEP first_name, last_name, height
| EVAL abs_height = ABS(0.0 - height)
----

Supported types:

include::types/abs.asciidoc[]
7 changes: 7 additions & 0 deletions docs/reference/esql/functions/cosh.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[[esql-cosh]]
=== `COSH`
[.text-center]
image::signature/cosh.svg[]

https://en.wikipedia.org/wiki/Hyperbolic_functions[Cosine] hyperbolic function.

[source.merge.styled,esql]
Expand All @@ -10,3 +13,7 @@ include::{esql-specs}/floats.csv-spec[tag=cosh]
|===
include::{esql-specs}/floats.csv-spec[tag=cosh-result]
|===

Supported types:

include::types/cosh.asciidoc[]
2 changes: 2 additions & 0 deletions docs/reference/esql/functions/greatest.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[[esql-greatest]]
=== `GREATEST`
[.text-center]
image::signature/greatest.svg[]

Returns the maximum value from many columns. This is similar to <<esql-mv_max>>
except it's intended to run on multiple columns at once.
Expand Down
33 changes: 4 additions & 29 deletions docs/reference/esql/functions/pow.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[[esql-pow]]
=== `POW`
[.text-center]
image::signature/pow.svg[]

Returns the value of a base (first argument) raised to the power of an exponent (second argument).
Both arguments must be numeric.

Expand Down Expand Up @@ -85,32 +88,4 @@ include::{esql-specs}/math.csv-spec[tag=powID-sqrt-result]

For clarity, the following table describes the output result type for all combinations of numeric input types:

[cols="1,1,1"]
|===
|Base | Exponent | Result

|double/float/half_float
|*footnote:all[All numeric types]
|double

|*footnote:all[]
|double/float/half_float
|double

|long/unsigned long
|*footnote:all_but_float[All except double/float/half_float]
|long

|*footnote:all_but_float[]
|long/unsigned long
|long

|*footnote:all_but_float_and_64[All except floating point and 64-bit types]
|*footnote:all_but_float_and_64[]
|int

|*footnote:all_but_float_and_64[]
|*footnote:all_but_float_and_64[]
|int

|===
include::types/pow.asciidoc[]
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/abs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/acos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/asin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/atan.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/atan2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/case.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/coalesce.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/concat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/cos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/cosh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/e.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/floor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/greatest.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/least.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/length.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/log10.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/ltrim.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/pi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit cc0a6f2

Please sign in to comment.