From 6d5a350db07503f8b8e22102b001aadad56b7ec9 Mon Sep 17 00:00:00 2001 From: comphead Date: Mon, 27 Nov 2023 14:34:08 -0800 Subject: [PATCH] minor: fix documentation (#8323) --- docs/source/user-guide/sql/scalar_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user-guide/sql/scalar_functions.md b/docs/source/user-guide/sql/scalar_functions.md index e7ebbc9f1fe7..74dceb221ad2 100644 --- a/docs/source/user-guide/sql/scalar_functions.md +++ b/docs/source/user-guide/sql/scalar_functions.md @@ -2315,7 +2315,7 @@ array_union(array1, array2) +----------------------------------------------------+ | array_union([1, 2, 3, 4], [5, 6, 7, 8]); | +----------------------------------------------------+ -| [1, 2, 3, 4, 5, 6] | +| [1, 2, 3, 4, 5, 6, 7, 8] | +----------------------------------------------------+ ```