{
  "comment" : "This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.",
  "type" : "scalar",
  "name" : "repeat",
  "description" : "Returns a string constructed by concatenating `string` with itself the specified `number` of times.",
  "signatures" : [
    {
      "params" : [
        {
          "name" : "string",
          "type" : "keyword",
          "optional" : false,
          "description" : "String expression."
        },
        {
          "name" : "number",
          "type" : "integer",
          "optional" : false,
          "description" : "Number times to repeat."
        }
      ],
      "variadic" : false,
      "returnType" : "keyword"
    },
    {
      "params" : [
        {
          "name" : "string",
          "type" : "text",
          "optional" : false,
          "description" : "String expression."
        },
        {
          "name" : "number",
          "type" : "integer",
          "optional" : false,
          "description" : "Number times to repeat."
        }
      ],
      "variadic" : false,
      "returnType" : "keyword"
    }
  ],
  "examples" : [
    "ROW a = \"Hello!\"\n| EVAL triple_a = REPEAT(a, 3)"
  ],
  "preview" : false,
  "snapshot_only" : false
}
