Skip to content

Commit 8dc57d5

Browse files
authored
[DOCS][8.x] Fix dodgy backticks + move tip (elastic#127555)
* [DOCS][8.x] Fix dodgy backticks h/t @alex-spies * Move tip
1 parent df116ec commit 8dc57d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/reference/esql/esql-lookup-join.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ contains multi-valued entries, those entries will not match anything
7979
image::images/esql/esql-lookup-join.png[align="center"]
8080

8181
If you're familiar with SQL, `LOOKUP JOIN` has left-join behavior. This means that
82-
if no rows match in the lookup index, the incoming row is retained and `null`s are added. If many rows in the lookup index match, `LOOKUP JOIN` adds one row per match.
82+
if no rows match in the lookup index, the incoming row is retained and `null` values are added. If many rows in the lookup index match, `LOOKUP JOIN` adds one row per match.
8383

8484
[discrete]
8585
[[esql-lookup-join-example]]
@@ -251,4 +251,4 @@ in the lookup index, or if the documents are too large. More precisely,
251251
`LOOKUP JOIN` works in batches of, normally, about 10,000 rows; a large
252252
amount of heap space is needed if the matching documents from the lookup
253253
index for a batch are multiple megabytes or larger. This is roughly the
254-
same as for `ENRICH`.
254+
same as for `ENRICH`.

docs/reference/esql/processing-commands/lookup.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ added as new columns to that row.
4848
If multiple documents in the lookup index match a single row in your
4949
results, the output will contain one row for each matching combination.
5050

51-
*Examples*
52-
5351
[TIP]
5452
====
5553
In case of name collisions, the newly created columns will override existing columns.
5654
====
5755

56+
*Examples*
57+
5858
*IP Threat correlation*: This query would allow you to see if any source
5959
IPs match known malicious addresses.
6060

0 commit comments

Comments
 (0)