19 lines
330 B
Markdown
19 lines
330 B
Markdown
|
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
```esql
|
||
|
FROM airports
|
||
|
| WHERE country == "India"
|
||
|
| KEEP city
|
||
|
| EVAL fn_length = LENGTH(city)
|
||
|
```
|
||
|
|
||
|
| city:keyword | fn_length:integer |
|
||
|
| --- | --- |
|
||
|
| Agwār | 5 |
|
||
|
| Ahmedabad | 9 |
|
||
|
| Bangalore | 9 |
|
||
|
|
||
|
|