Skip to content

Commit 8704355

Browse files
Kibana updates, remove links from JSON and split is-null/is-not-null (#125986) (#126039)
In particular: * Remove all links (both asciidoc and markdown) from the JSON definition files. * This required a two phase edit, from asciidoc links to markdown, and then removal of markdown (replace with markdown text). This is because the asciidoc does not have the display text, and because some links were already markdown. * Split predicates into is_null and is_not_null * We kept the old combined version because the main docs still use that, so now we have both combined and separate versions, and Kibana can select the version they want.
1 parent 1b876d1 commit 8704355

Some content is hidden

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

49 files changed

+638
-56
lines changed
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.

docs/reference/query-languages/esql/kibana/definition/functions/least.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.

docs/reference/query-languages/esql/kibana/definition/functions/match.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.

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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)