From 4952172c7cbb7eceb80b64e9a1763e10d78b070e Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Mon, 6 Oct 2025 17:36:44 +0200 Subject: [PATCH] Generate "other" functions from system tables --- 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 e7f7ad1a245..2d464cec5ec 100755 --- a/scripts/settings/autogenerate-settings.sh +++ b/scripts/settings/autogenerate-settings.sh @@ -273,6 +273,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then "Natural Language Processing" "Rounding" "Time Series" + "Other" ) for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do @@ -390,6 +391,7 @@ insert_src_files=( "natural_language_processing-functions.md" "rounding-functions.md" "time_series-functions.md" + "other-functions.md" ) insert_dest_files=( @@ -415,6 +417,7 @@ insert_dest_files=( "docs/sql-reference/functions/nlp-functions.md" "docs/sql-reference/functions/rounding-functions.md" "docs/sql-reference/functions/time-series-functions.md" + "docs/sql-reference/functions/other-functions.md" ) echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"