Skip to content

Commit

Permalink
[ESQL] Update docs format (missing space before '=') (elastic#116808) (
Browse files Browse the repository at this point in the history
  • Loading branch information
GalLalouche authored Nov 14, 2024
1 parent 98c68a0 commit b3edb3a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/esql/functions/kibana/docs/bit_length.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/esql/functions/kibana/docs/byte_length.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b3edb3a

Please sign in to comment.