From 1baebf899aa032798e517b91182d02775b034da7 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Fri, 19 Sep 2025 14:29:12 +0200 Subject: [PATCH] Generate logical 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 2d1e3cedf44..b2ba85b2aaf 100755 --- a/scripts/settings/autogenerate-settings.sh +++ b/scripts/settings/autogenerate-settings.sh @@ -267,6 +267,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then "Hash" "Introspection" "JSON" + "Logical" ) for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do @@ -378,6 +379,7 @@ insert_src_files=( "hash-functions.md" "introspection-functions.md" "json-functions.md" + "logical-functions.md" ) insert_dest_files=( @@ -397,6 +399,7 @@ insert_dest_files=( "docs/sql-reference/functions/hash-functions.md" "docs/sql-reference/functions/introspection.md" "docs/sql-reference/functions/json-functions.md" + "docs/sql-reference/functions/logical-functions.md" ) echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"