From 815a4ddf33fcac9ee10af827085960bc62d2a017 Mon Sep 17 00:00:00 2001 From: Denny Crane Date: Mon, 16 Aug 2021 21:08:02 -0300 Subject: [PATCH] Update array-functions.md fix arrayIntersect --- docs/en/sql-reference/functions/array-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/functions/array-functions.md b/docs/en/sql-reference/functions/array-functions.md index e7918c018db..1148edc6a58 100644 --- a/docs/en/sql-reference/functions/array-functions.md +++ b/docs/en/sql-reference/functions/array-functions.md @@ -952,7 +952,7 @@ SELECT arrayEnumerateDense([10, 20, 10, 30]) ## arrayIntersect(arr) {#array-functions-arrayintersect} -Takes multiple arrays, returns an array with elements that are present in all source arrays. Elements order in the resulting array is the same as in the first array. +Takes multiple arrays, returns an array with elements that are present in all source arrays. Example: