You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Improve documentation about array concat operator vs. underlying functions.
The documentation implied that there was seldom any reason to use thearray_append, array_prepend, and array_cat functions directly. But that'snot really true, because they can help make it clear which case is meant,which the || operator can't do since it's overloaded to represent all threecases. Add some discussion and examples illustrating the potentiallyconfusing behavior that can ensue if the parser misinterprets what wasmeant.Per a complaint from Michael Herold. Back-patch to 9.2, which is where ||started to behave this way.