From 937cffdc971ba7fbf71778a9ee97330dae74ebdb Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:45:47 +0200 Subject: [PATCH 1/2] Start generating String functions from source --- scripts/settings/autogenerate-settings.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/settings/autogenerate-settings.sh b/scripts/settings/autogenerate-settings.sh index ad9cd1e0eb4..0fd84471ac4 100755 --- a/scripts/settings/autogenerate-settings.sh +++ b/scripts/settings/autogenerate-settings.sh @@ -277,6 +277,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then "Time Series" "Other" "Time Window" + "String" ) for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do @@ -398,6 +399,7 @@ insert_src_files=( "time_series-functions.md" "other-functions.md" "time_window-functions.md" + "string-functions.md" ) insert_dest_files=( @@ -427,6 +429,7 @@ insert_dest_files=( "docs/sql-reference/functions/time-series-functions.md" "docs/sql-reference/functions/other-functions.md" "docs/sql-reference/functions/time-window-functions.md" + "docs/sql-reference/functions/string-functions.md" ) echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags" From 0a94bae367bfe5bc3ceb532182f76d05480fd536 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Fri, 17 Oct 2025 15:08:50 +0200 Subject: [PATCH 2/2] Trigger CI