{
  "comment" : "This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.",
  "type" : "scalar",
  "name" : "to_lower",
  "description" : "Returns a new string representing the input string converted to lower case.",
  "signatures" : [
    {
      "params" : [
        {
          "name" : "str",
          "type" : "keyword",
          "optional" : false,
          "description" : "String expression. If `null`, the function returns `null`. The input can be a single-valued column or expression, or a multi-valued column or expression. "
        }
      ],
      "variadic" : false,
      "returnType" : "keyword"
    },
    {
      "params" : [
        {
          "name" : "str",
          "type" : "text",
          "optional" : false,
          "description" : "String expression. If `null`, the function returns `null`. The input can be a single-valued column or expression, or a multi-valued column or expression. "
        }
      ],
      "variadic" : false,
      "returnType" : "keyword"
    }
  ],
  "examples" : [
    "ROW message = \"Some Text\"\n| EVAL message_lower = TO_LOWER(message)",
    "ROW v = TO_LOWER([\"Some\", \"Text\"])"
  ],
  "preview" : false,
  "snapshot_only" : false
}
