Skip to content
This repository was archived by the owner on Sep 21, 2021. It is now read-only.

Commit 9013900

Browse files
Removed references to empty strings as null values
1 parent 5a7d655 commit 9013900

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

052_Mapping_Analysis/50_Complex_datatypes.asciidoc

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ indexed:
5050

5151
[source,js]
5252
--------------------------------------------------
53-
"empty_string": "",
5453
"null_value": null,
5554
"empty_array": [],
5655
"array_with_null_value": [ null ]

080_Structured_Search/30_existsmissing.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ can't! An inverted index is simply a list of tokens and the documents that
2020
contain them. If a field doesn't exist, it doesn't hold any tokens, which
2121
means it won't be represented in an inverted index data structure.
2222

23-
Ultimately, this((("strings", "empty")))((("arrays", "empty"))) means that a `null`, `""` (an empty string), `[]` (an empty
23+
Ultimately, this((("strings", "empty")))((("arrays", "empty"))) means that a `null`, `[]` (an empty
2424
array), and `[null]` are all equivalent. They simply don't exist in the
2525
inverted index!
2626

0 commit comments

Comments
 (0)