pgsql: Add infrastructure for storing a VARIADIC ANY function's VARIADI

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Add infrastructure for storing a VARIADIC ANY function's VARIADI
Дата
Msg-id E1TxSdI-0004wL-BJ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add infrastructure for storing a VARIADIC ANY function's VARIADIC flag.

Originally we didn't bother to mark FuncExprs with any indication whether
VARIADIC had been given in the source text, because there didn't seem to be
any need for it at runtime.  However, because we cannot fold a VARIADIC ANY
function's arguments into an array (since they're not necessarily all the
same type), we do actually need that information at runtime if VARIADIC ANY
functions are to respond unsurprisingly to use of the VARIADIC keyword.
Add the missing field, and also fix ruleutils.c so that VARIADIC ANY
function calls are dumped properly.

Extracted from a larger patch that also fixes concat() and format() (the
only two extant VARIADIC ANY functions) to behave properly when VARIADIC is
specified.  This portion seems appropriate to review and commit separately.

Pavel Stehule

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/75b39e79099fb1da43542e12698df717d1bd120f

Modified Files
--------------
src/backend/nodes/copyfuncs.c        |    1 +
src/backend/nodes/equalfuncs.c       |    1 +
src/backend/nodes/makefuncs.c        |    1 +
src/backend/nodes/outfuncs.c         |    1 +
src/backend/nodes/readfuncs.c        |    1 +
src/backend/optimizer/util/clauses.c |   22 +++++++--
src/backend/parser/parse_func.c      |    1 +
src/backend/utils/adt/ruleutils.c    |   87 +++++++++++++++++++++++----------
src/backend/utils/fmgr/fmgr.c        |   26 ++++++++++
src/include/catalog/catversion.h     |    2 +-
src/include/fmgr.h                   |    1 +
src/include/nodes/primnodes.h        |    1 +
12 files changed, 113 insertions(+), 32 deletions(-)


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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: pgsql: Add ddl_command_end support for event triggers.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Typo fixes.