forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into esql-binary-operator-finishing-pass
Conflicts: x-pack/plugin/ql/src/main/java/org/elasticsearch/xpack/ql/util/NumericUtils.java
- Loading branch information
Showing
303 changed files
with
4,647 additions
and
3,388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 102078 | ||
summary: Derive expected replica size from primary | ||
area: Allocation | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 102967 | ||
summary: "ES|QL: Improve resolution error management in `mv_expand`" | ||
area: ES|QL | ||
type: bug | ||
issues: | ||
- 102964 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 103035 | ||
summary: "x-pack/plugin/core: add `match_mapping_type` to `ecs@mappings` dynamic templates" | ||
area: Data streams | ||
type: bug | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 103084 | ||
summary: Return `matched_queries` in Percolator | ||
area: Percolator | ||
type: enhancement | ||
issues: | ||
- 10163 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 103209 | ||
summary: "ESQL: Fix `to_degrees()` returning infinity" | ||
area: ES|QL | ||
type: bug | ||
issues: | ||
- 102987 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 103251 | ||
summary: Wait for reroute before acking put-shutdown | ||
area: Infra/Node Lifecycle | ||
type: bug | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 103310 | ||
summary: Revert "Validate settings in `ReloadSecureSettings` API" | ||
area: Security | ||
type: bug | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
docs/reference/esql/functions/signature/greater_than_or_equal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[discrete] | ||
[[esql-to_cartesianpoint]] | ||
=== `TO_CARTESIANPOINT` | ||
Converts an input value to a `point` value. | ||
|
||
The input can be a single- or multi-valued field or an expression. | ||
The input type must be a string or a cartesian `point`. | ||
|
||
A string will only be successfully converted if it respects the | ||
https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry[WKT Point] format: | ||
|
||
[source.merge.styled,esql] | ||
---- | ||
include::{esql-specs}/spatial.csv-spec[tag=to_cartesianpoint-str] | ||
---- | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
include::{esql-specs}/spatial.csv-spec[tag=to_cartesianpoint-str-result] | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[discrete] | ||
[[esql-to_geopoint]] | ||
=== `TO_GEOPOINT` | ||
Converts an input value to a `geo_point` value. | ||
|
||
The input can be a single- or multi-valued field or an expression. | ||
The input type must be a string or a `geo_point`. | ||
|
||
A string will only be successfully converted if it respects the | ||
https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry[WKT Point] format: | ||
|
||
[source.merge.styled,esql] | ||
---- | ||
include::{esql-specs}/spatial.csv-spec[tag=to_geopoint-str] | ||
---- | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
include::{esql-specs}/spatial.csv-spec[tag=to_geopoint-str-result] | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
date_period | date_period | date_period | ||
date_period | datetime | datetime | ||
datetime | date_period | datetime | ||
datetime | time_duration | datetime | ||
double | double | double | ||
integer | integer | integer | ||
long | long | long | ||
time_duration | time_duration | time_duration | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
double | double | double | ||
integer | integer | integer | ||
long | long | long | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
5 changes: 5 additions & 0 deletions
5
docs/reference/esql/functions/types/greater_than_or_equal.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
5 changes: 5 additions & 0 deletions
5
docs/reference/esql/functions/types/less_than_or_equal.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
double | double | double | ||
integer | integer | integer | ||
long | long | long | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
double | double | double | ||
integer | integer | integer | ||
long | long | long | ||
|=== |
7 changes: 4 additions & 3 deletions
7
.../esql/functions/types/to_degrees.asciidoc → ...ference/esql/functions/types/neg.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
v | result | ||
date_period | date_period | ||
double | double | ||
integer | double | ||
long | double | ||
unsigned_long | double | ||
integer | integer | ||
long | long | ||
time_duration | time_duration | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
integer | integer | boolean | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[%header.monospaced.styled,format=dsv,separator=|] | ||
|=== | ||
lhs | rhs | result | ||
date_period | date_period | date_period | ||
datetime | date_period | datetime | ||
datetime | time_duration | datetime | ||
double | double | double | ||
integer | integer | integer | ||
long | long | long | ||
time_duration | time_duration | time_duration | ||
|=== |
Oops, something went wrong.