File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,15 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then
251
251
echo " [$SCRIPT_NAME ] Generating function documentation using consolidated SQL file..."
252
252
253
253
# Define function categories to process
254
- FUNCTION_CATEGORIES=(" Arithmetic" " Arrays" " Bit" " Bitmap" " Comparison" " Conditional" )
254
+ FUNCTION_CATEGORIES=(
255
+ " Arithmetic"
256
+ " Arrays"
257
+ " Bit"
258
+ " Bitmap"
259
+ " Comparison"
260
+ " Conditional"
261
+ " Distance"
262
+ )
255
263
256
264
for CATEGORY in " ${FUNCTION_CATEGORIES[@]} " ; do
257
265
echo " [$SCRIPT_NAME ] Processing $CATEGORY functions..."
@@ -351,6 +359,7 @@ insert_src_files=(
351
359
" bitmap-functions.md"
352
360
" comparison-functions.md"
353
361
" conditional-functions.md"
362
+ " distance-functions.md"
354
363
)
355
364
insert_dest_files=(
356
365
" docs/about-us/beta-and-experimental-features.md"
@@ -360,6 +369,7 @@ insert_dest_files=(
360
369
" docs/sql-reference/functions/bitmap-functions.md"
361
370
" docs/sql-reference/functions/comparison-functions.md"
362
371
" docs/sql-reference/functions/conditional-functions.md"
372
+ " docs/sql-reference/functions/distance-functions.md"
363
373
)
364
374
echo " [$SCRIPT_NAME ] Inserting generated markdown content between <!-- AUTOGENERATED_START --> <!-- AUTOGENERATED_END --> tags"
365
375
for i in " ${! insert_src_files[@]} " ; do
You can’t perform that action at this time.
0 commit comments