diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-12-23 08:40:25 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-12-23 08:40:25 -0500 |
commit | d5448c7d31b5af66a809e6580bae9bd31448bfa7 (patch) | |
tree | 6e10ff9bd80f51aedad9abf3c037195f284a1254 /doc/src | |
parent | 0510b62d91151b9d8c1fe1aa15c9cf3ffe9bf25b (diff) | |
download | postgresql-d5448c7d31b5af66a809e6580bae9bd31448bfa7.tar.gz postgresql-d5448c7d31b5af66a809e6580bae9bd31448bfa7.zip |
Add bytea_agg, parallel to string_agg.
Pavel Stehule
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index e7f7fe0e889..2e06346584c 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -10911,6 +10911,24 @@ SELECT NULLIF(value, '(none)') ... <row> <entry> <indexterm> + <primary>bytea_agg</primary> + </indexterm> + <function> + bytea_agg(<replaceable class="parameter">expression</replaceable>) + </function> + </entry> + <entry> + <type>bytea</type> + </entry> + <entry> + <type>bytea</type> + </entry> + <entry>input values concatenated into a bytea</entry> + </row> + + <row> + <entry> + <indexterm> <primary>count</primary> </indexterm> <function>count(*)</function> |