Better text

This commit is contained in:
ivan-klass 2023-05-04 13:06:07 +02:00 committed by GitHub
parent a788d0b124
commit 1da30e2830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,8 +79,8 @@ GROUP BY
└─────────────┴──────────┴─────────┘ └─────────────┴──────────┴─────────┘
``` ```
### Important note! ### Important note!
Using multiple `arrayJoin` with same expression may not produce expected results due optimizations. Using multiple `arrayJoin` with same expression may not produce expected results due to 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, []))` 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: Example:
```sql ```sql