Skip to content

Commit 96aa2ae

Browse files
authored
Start generating URL functions
1 parent 048fffb commit 96aa2ae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/settings/autogenerate-settings.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then
268268
"Other"
269269
"Time Window"
270270
"Tuple"
271+
"URL"
271272
)
272273
for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do
273274
echo "[$SCRIPT_NAME] Processing $CATEGORY functions..."
@@ -382,6 +383,7 @@ insert_src_files=(
382383
"other-functions.md"
383384
"time_window-functions.md"
384385
"tuple-functions.md"
386+
"url-functions.md"
385387
)
386388
insert_dest_files=(
387389
"docs/about-us/beta-and-experimental-features.md"
@@ -412,6 +414,7 @@ insert_dest_files=(
412414
"docs/sql-reference/functions/other-functions.md"
413415
"docs/sql-reference/functions/time-window-functions.md"
414416
"docs/sql-reference/functions/tuple-functions.md"
417+
"docs/sql-reference/functions/url-functions.md"
415418
)
416419
echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"
417420
for i in "${!insert_src_files[@]}"; do
@@ -537,4 +540,4 @@ rm -rf "$tmp_dir"/*
537540
rmdir "$tmp_dir" 2>/dev/null || echo "[$SCRIPT_NAME] Unable to remove $tmp_dir"
538541

539542
echo "[$SCRIPT_NAME] Auto-generation of settings and system tables documentation completed successfully."
540-
exit 0
543+
exit 0

0 commit comments

Comments
 (0)