[ESQL] Update docs format (missing space before '=') (#116808)
This commit is contained in:
parent
10c9421ac1
commit
c45977a5fd
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue