[ESQL] Update docs format (missing space before '=') (#116808)

This commit is contained in:
Gal Lalouche 2024-11-14 16:05:28 +02:00 committed by GitHub
parent 10c9421ac1
commit c45977a5fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@
}
],
"examples" : [
"FROM airports\n| WHERE country == \"India\"\n| KEEP city\n| EVAL fn_length=LENGTH(city), fn_bit_length = BIT_LENGTH(city)"
"FROM airports\n| WHERE country == \"India\"\n| KEEP city\n| EVAL fn_length = LENGTH(city), fn_bit_length = BIT_LENGTH(city)"
],
"preview" : false,
"snapshot_only" : false

View File

@ -31,7 +31,7 @@
}
],
"examples" : [
"FROM airports\n| WHERE country == \"India\"\n| KEEP city\n| EVAL fn_length=LENGTH(city), fn_byte_length = BYTE_LENGTH(city)"
"FROM airports\n| WHERE country == \"India\"\n| KEEP city\n| EVAL fn_length = LENGTH(city), fn_byte_length = BYTE_LENGTH(city)"
],
"preview" : false,
"snapshot_only" : false

View File

@ -9,6 +9,6 @@ Returns the bit length of a string.
FROM airports
| WHERE country == "India"
| KEEP city
| EVAL fn_length=LENGTH(city), fn_bit_length = BIT_LENGTH(city)
| EVAL fn_length = LENGTH(city), fn_bit_length = BIT_LENGTH(city)
```
Note: All strings are in UTF-8, so a single character can use multiple bytes.

View File

@ -9,6 +9,6 @@ Returns the byte length of a string.
FROM airports
| WHERE country == "India"
| KEEP city
| EVAL fn_length=LENGTH(city), fn_byte_length = BYTE_LENGTH(city)
| EVAL fn_length = LENGTH(city), fn_byte_length = BYTE_LENGTH(city)
```
Note: All strings are in UTF-8, so a single character can use multiple bytes.

View File

@ -663,7 +663,7 @@ required_capability: fn_bit_length
FROM airports
| WHERE country == "India"
| KEEP city
| EVAL fn_length=LENGTH(city), fn_bit_length = BIT_LENGTH(city)
| EVAL fn_length = LENGTH(city), fn_bit_length = BIT_LENGTH(city)
// end::bitLength[]
| SORT city
| LIMIT 3

View File

@ -379,7 +379,7 @@ required_capability: fn_byte_length
FROM airports
| WHERE country == "India"
| KEEP city
| EVAL fn_length=LENGTH(city), fn_byte_length = BYTE_LENGTH(city)
| EVAL fn_length = LENGTH(city), fn_byte_length = BYTE_LENGTH(city)
// end::byteLength[]
| SORT city
| LIMIT 3