% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it. **Examples** ```esql ROW message = "Some Text" | EVAL message_lower = TO_LOWER(message) ``` | message:keyword | message_lower:keyword | | --- | --- | | Some Text | some text | ```{applies_to} stack: ga 9.1.0 ``` ```esql ROW v = TO_LOWER(["Some", "Text"]) ``` | v:keyword | | --- | | ["some", "text"] |