This is an automated email from the ASF dual-hosted git repository. vogievetsky pushed a commit to branch segment_timeline2 in repository https://gitbox.apache.org/repos/asf/druid.git
commit b6b5296249962eb5ca8a61143f577b89f5f33bb5 Author: Vadim Ogievetsky <[email protected]> AuthorDate: Tue Nov 12 12:35:24 2024 -0800 add unnest --- web-console/script/create-sql-docs.mjs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web-console/script/create-sql-docs.mjs b/web-console/script/create-sql-docs.mjs index 62e1f44d017..b14055341a0 100755 --- a/web-console/script/create-sql-docs.mjs +++ b/web-console/script/create-sql-docs.mjs @@ -39,6 +39,12 @@ const initialFunctionDocs = { ), ], ], + UNNEST: [ + [ + 'arrayExpression', + convertMarkdownToHtml("Unnests ARRAY typed values. The source for UNNEST can be an array type column, or an input that's been transformed into an array, such as with helper functions like `MV_TO_ARRAY` or `ARRAY`.") + ] + ] }; function hasHtmlTags(str) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
