From 54be3ecf4c8a18e856cd83f71e7f9ef74ec49d96 Mon Sep 17 00:00:00 2001 From: Zakaria Fikrat Date: Wed, 15 Oct 2025 09:02:34 +0200 Subject: [PATCH] Add documentation for json_array_elements_text function --- content/en/ddsql_reference/_index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/ddsql_reference/_index.md b/content/en/ddsql_reference/_index.md index 6df19971ad619..4b31f46a56756 100644 --- a/content/en/ddsql_reference/_index.md +++ b/content/en/ddsql_reference/_index.md @@ -724,6 +724,7 @@ This table provides an overview of the supported window functions. For comprehen | json_extract_path_text(text json, text path…) | text | Extracts a JSON sub-object as text, defined by the path. Its behavior is equivalent to the [Postgres function with the same name][3]. For example, `json_extract_path_text(col, ‘forest')` returns the value of the key `forest` for each JSON object in `col`. See the example below for a JSON array syntax. | | json_extract_path(text json, text path…) | JSON | Same functionality as `json_extract_path_text`, but returns a column of JSON type instead of text type. | | json_array_elements(text json) | rows of JSON | Expands a JSON array into a set of rows. This form is only allowed in a FROM clause. | +| json_array_elements_text(text json) | rows of text | Expands a JSON array into a set of rows. This form is only allowed in a FROM clause. | ## Table functions