]> granicus.if.org Git - postgresql/commit
Add infrastructure for storing a VARIADIC ANY function's VARIADIC flag.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 22 Jan 2013 01:25:26 +0000 (20:25 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 22 Jan 2013 01:26:15 +0000 (20:26 -0500)
commit75b39e79099fb1da43542e12698df717d1bd120f
treea60b5222e8fc1710e9a5aed86cd8d86e19e55576
parent841a5150c575ccd89e4b03aec66eeeefb21f3cbe
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
12 files changed:
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/nodes/makefuncs.c
src/backend/nodes/outfuncs.c
src/backend/nodes/readfuncs.c
src/backend/optimizer/util/clauses.c
src/backend/parser/parse_func.c
src/backend/utils/adt/ruleutils.c
src/backend/utils/fmgr/fmgr.c
src/include/catalog/catversion.h
src/include/fmgr.h
src/include/nodes/primnodes.h