From e48cd7e88073c94ac39b9352c5f9266f19c25c09 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Wed, 24 Sep 2025 13:03:10 +0200 Subject: [PATCH] Begin autogenerating NLP functions --- 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 a47aa4e1521..1e1ca91cd07 100755 --- a/scripts/settings/autogenerate-settings.sh +++ b/scripts/settings/autogenerate-settings.sh @@ -269,6 +269,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then "JSON" "Logical" "Mathematical" + "Natural Language Processing" ) for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do @@ -382,6 +383,7 @@ insert_src_files=( "json-functions.md" "logical-functions.md" "mathematical-functions.md" + "natural_language_processing-functions.md" ) insert_dest_files=( @@ -403,6 +405,7 @@ insert_dest_files=( "docs/sql-reference/functions/json-functions.md" "docs/sql-reference/functions/logical-functions.md" "docs/sql-reference/functions/math-functions.md" + "docs/sql-reference/functions/nlp-functions.md" ) echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"