From 53da41bc12217780efcdbe5040cf97c642ca738d Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Thu, 16 Oct 2025 18:25:41 +0200 Subject: [PATCH] Start generating type conversion 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 1202812c372..9422c611852 100755 --- a/scripts/settings/autogenerate-settings.sh +++ b/scripts/settings/autogenerate-settings.sh @@ -278,6 +278,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then "Other" "Time Window" "Tuple" + "Type Conversion" ) for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do @@ -400,6 +401,7 @@ insert_src_files=( "other-functions.md" "time_window-functions.md" "tuple-functions.md" + "type_conversion-functions.md" ) insert_dest_files=( @@ -430,6 +432,7 @@ insert_dest_files=( "docs/sql-reference/functions/other-functions.md" "docs/sql-reference/functions/time-window-functions.md" "docs/sql-reference/functions/tuple-functions.md" + "docs/sql-reference/functions/type-conversion-functions.md" ) echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"