From 1da30e283049aa2d3948e89569bda5988bc36c39 Mon Sep 17 00:00:00 2001 From: ivan-klass Date: Thu, 4 May 2023 13:06:07 +0200 Subject: [PATCH] Better text --- docs/en/sql-reference/functions/array-join.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/sql-reference/functions/array-join.md b/docs/en/sql-reference/functions/array-join.md index 98675f02f43..bbb9ca1ba04 100644 --- a/docs/en/sql-reference/functions/array-join.md +++ b/docs/en/sql-reference/functions/array-join.md @@ -79,8 +79,8 @@ GROUP BY └─────────────┴──────────┴─────────┘ ``` ### Important note! -Using multiple `arrayJoin` with same expression may not produce expected results due optimizations. -For that cases, consider changing array expression that is repeated with extra operations that do not affect join result - e.g. `arrayJoin(arraySort(arr))`, `arrayJoin(arrayConcat(arr, []))` +Using multiple `arrayJoin` with same expression may not produce expected results due to optimizations. +For that cases, consider modifying repeated array expression with extra operations that do not affect join result - e.g. `arrayJoin(arraySort(arr))`, `arrayJoin(arrayConcat(arr, []))` Example: ```sql