elasticsearch/docs/reference/esql/functions/layout/repeat.asciidoc
Parker Timmins bb3ff8e924
ESQL: add REPEAT string function (#109220)
Add support for the string manipulation function REPEAT(string, number). This function concatenates the string argument with itself the specified number of times. If number is 0 an empty string is returned. If number is less than 0, null is returned and a warning is logged. If number is less than 0 and is a constant, the query will fail without executing.
2024-06-04 16:32:43 -05:00

15 lines
406 B
Text
Generated

// This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
[discrete]
[[esql-repeat]]
=== `REPEAT`
*Syntax*
[.text-center]
image::esql/functions/signature/repeat.svg[Embedded,opts=inline]
include::../parameters/repeat.asciidoc[]
include::../description/repeat.asciidoc[]
include::../types/repeat.asciidoc[]
include::../examples/repeat.asciidoc[]