Skip to content

Commit 37f3b64

Browse files
authored
Merge branch 'main' into painlessfix
2 parents 7141291 + d8ae61e commit 37f3b64

File tree

270 files changed

+2344
-948
lines changed

Some content is hidden

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

270 files changed

+2344
-948
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/changelog/125916.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 125916
2+
summary: Re-enable parallel collection for field sorted top hits
3+
area: Search
4+
type: bug
5+
issues: []

docs/changelog/125930.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 125930
2+
summary: Infer the score mode to use from the Lucene collector
3+
area: "ES|QL"
4+
type: enhancement
5+
issues: []

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

0 commit comments

Comments
 (0)