Skip to content

Commit 8268327

Browse files
committed
Merge branch 'main' into 2025/04/01/S3HttpHandler-parse-request
2 parents c6d036f + d966938 commit 8268327

File tree

238 files changed

+1553
-793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+1553
-793
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ expensive messages that will usually be discarded:
467467

468468
Logging is an important behaviour of the system and sometimes deserves its own
469469
unit tests, especially if there is complex logic for computing what is logged
470-
and when to log it. You can use a `org.elasticsearch.test.MockLogAppender` to
470+
and when to log it. You can use a `org.elasticsearch.test.MockLog` to
471471
make assertions about the logs that are being emitted.
472472

473473
Logging is a powerful diagnostic technique, but it is not the only possibility.

docs/changelog/125477.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 125477
2+
summary: Prevent get datafeeds stats API returning an error when local tasks are slow to stop
3+
area: Machine Learning
4+
type: bug
5+
issues:
6+
- 104160

docs/redirects.yml

Lines changed: 0 additions & 142 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
2+
3+
**Example**
4+
5+
```esql
6+
FROM employees
7+
| WHERE is_rehired IS NOT NULL
8+
| STATS COUNT(emp_no)
9+
```
10+
11+
| COUNT(emp_no):long |
12+
| --- |
13+
| 84 |
14+
15+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
2+
3+
**Example**
4+
5+
```esql
6+
FROM employees
7+
| WHERE birth_date IS NULL
8+
| KEEP first_name, last_name
9+
| SORT first_name
10+
| LIMIT 3
11+
```
12+
13+
| first_name:keyword | last_name:keyword |
14+
| --- | --- |
15+
| Basil | Tramer |
16+
| Florian | Syrotiuk |
17+
| Lucien | Rosenbaum |
18+
19+
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
2+
3+
**Supported types**
4+
5+
| field | result |
6+
| --- | --- |
7+
| boolean | boolean |
8+
| cartesian_point | boolean |
9+
| cartesian_shape | boolean |
10+
| date | boolean |
11+
| date_nanos | boolean |
12+
| double | boolean |
13+
| geo_point | boolean |
14+
| geo_shape | boolean |
15+
| integer | boolean |
16+
| ip | boolean |
17+
| keyword | boolean |
18+
| long | boolean |
19+
| text | boolean |
20+
| unsigned_long | boolean |
21+
| version | boolean |
22+
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
2+
3+
**Supported types**
4+
5+
| field | result |
6+
| --- | --- |
7+
| boolean | boolean |
8+
| cartesian_point | boolean |
9+
| cartesian_shape | boolean |
10+
| date | boolean |
11+
| date_nanos | boolean |
12+
| double | boolean |
13+
| geo_point | boolean |
14+
| geo_shape | boolean |
15+
| integer | boolean |
16+
| ip | boolean |
17+
| keyword | boolean |
18+
| long | boolean |
19+
| text | boolean |
20+
| unsigned_long | boolean |
21+
| version | boolean |
22+

docs/reference/query-languages/esql/images/operators/is_not_null.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/reference/query-languages/esql/images/operators/is_null.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/reference/query-languages/esql/kibana/definition/functions/greatest.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)