]> granicus.if.org Git - postgresql/commit
Support arrays as input to array_agg() and ARRAY(SELECT ...).
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 25 Nov 2014 17:21:22 +0000 (12:21 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 25 Nov 2014 17:21:28 +0000 (12:21 -0500)
commitbac27394a1c69c20ec904729c593e59485c75c69
tree7bdf15b078bfcef745a5bb2c7c479d6f8bd45f15
parent25976710dfd8611d3fc79c0c1e20179ff7a940ec
Support arrays as input to array_agg() and ARRAY(SELECT ...).

These cases formerly failed with errors about "could not find array type
for data type".  Now they yield arrays of the same element type and one
higher dimension.

The implementation involves creating functions with API similar to the
existing accumArrayResult() family.  I (tgl) also extended the base family
by adding an initArrayResult() function, which allows callers to avoid
special-casing the zero-inputs case if they just want an empty array as
result.  (Not all do, so the previous calling convention remains valid.)
This allowed simplifying some existing code in xml.c and plperl.c.

Ali Akbar, reviewed by Pavel Stehule, significantly modified by me
18 files changed:
doc/src/sgml/func.sgml
doc/src/sgml/syntax.sgml
doc/src/sgml/xaggr.sgml
src/backend/executor/nodeSubplan.c
src/backend/nodes/nodeFuncs.c
src/backend/optimizer/plan/subselect.c
src/backend/utils/adt/array_userfuncs.c
src/backend/utils/adt/arrayfuncs.c
src/backend/utils/adt/xml.c
src/backend/utils/cache/lsyscache.c
src/include/catalog/catversion.h
src/include/catalog/pg_aggregate.h
src/include/catalog/pg_proc.h
src/include/utils/array.h
src/include/utils/lsyscache.h
src/pl/plperl/plperl.c
src/test/regress/expected/arrays.out
src/test/regress/sql/arrays.sql