pgsql: Improve documentation about array concat operator vs. underlying

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve documentation about array concat operator vs. underlying
Дата
Msg-id E1ZDKeW-00049a-E9@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve documentation about array concat operator vs. underlying functions.

The documentation implied that there was seldom any reason to use the
array_append, array_prepend, and array_cat functions directly.  But that's
not 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 three
cases.  Add some discussion and examples illustrating the potentially
confusing behavior that can ensue if the parser misinterprets what was
meant.

Per a complaint from Michael Herold.  Back-patch to 9.2, which is where ||
started to behave this way.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/e4f29ce32391525629c75aade86f2f939956c69c

Modified Files
--------------
doc/src/sgml/array.sgml |   47 +++++++++++++++++++++++++++++++++++++++++------
1 file changed, 41 insertions(+), 6 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve documentation about array concat operator vs. underlying
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Copy-edit the docs changes of OWNER TO CURRENT/SESSION_USER addi