1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-20 15:22:23 +03:00

Add bytea_agg, parallel to string_agg.

Pavel Stehule
This commit is contained in:
Robert Haas
2011-12-23 08:40:25 -05:00
parent 0510b62d91
commit d5448c7d31
8 changed files with 116 additions and 1 deletions

View File

@ -10908,6 +10908,24 @@ SELECT NULLIF(value, '(none)') ...
<entry>true if at least one input value is true, otherwise false</entry>
</row>
<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>