You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: elasticsearch/esql/functions.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -544,7 +544,7 @@ def match(
544
544
545
545
:param field: Field that the query will target.
546
546
:param query: Value to find in the provided field.
547
-
:param options: (Optional) Match additional options as [function named parameters](/reference/query-languages/esql/esql-syntax.md#esql-function-named-params).
547
+
:param options: (Optional) Match additional options as function named parameters.
548
548
"""
549
549
ifoptionsisnotNone:
550
550
returnInstrumentedExpression(
@@ -1188,8 +1188,8 @@ def st_geohash(
1188
1188
:param precision: Expression of type `integer`. If `null`, the function
1189
1189
returns `null`. Valid values are between 1 and 12.
1190
1190
:param bounds: Optional bounds to filter the grid tiles, a `geo_shape` of
1191
-
type `BBOX`. Use [`ST_ENVELOPE`](#esql-st_envelope) if the
1192
-
`geo_shape` is of any other type.
1191
+
type `BBOX`. Use `ST_ENVELOPE` if the `geo_shape` is of any
1192
+
other type.
1193
1193
"""
1194
1194
ifboundsisnotNone:
1195
1195
returnInstrumentedExpression(
@@ -1234,7 +1234,7 @@ def st_geohex(
1234
1234
:param precision: Expression of type `integer`. If `null`, the function
1235
1235
returns `null`. Valid values are between 0 and 15.
1236
1236
:param bounds: Optional bounds to filter the grid tiles, a `geo_shape` of
1237
-
type `BBOX`. Use [`ST_ENVELOPE`](#esql-st_envelope) if the `geo_shape`
1237
+
type `BBOX`. Use `ST_ENVELOPE` if the `geo_shape`
1238
1238
is of any other type.
1239
1239
"""
1240
1240
ifboundsisnotNone:
@@ -1280,8 +1280,8 @@ def st_geotile(
1280
1280
:param precision: Expression of type `integer`. If `null`, the function
1281
1281
returns `null`. Valid values are between 0 and 29.
1282
1282
:param bounds: Optional bounds to filter the grid tiles, a `geo_shape` of
1283
-
type `BBOX`. Use [`ST_ENVELOPE`](#esql-st_envelope) if the
1284
-
`geo_shape` is of any other type.
1283
+
type `BBOX`. Use `ST_ENVELOPE` if the `geo_shape` is of any
0 commit comments