diff options
| author | Mads Jensen <mje@inducks.org> | 2016-09-26 13:16:03 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-10-07 07:52:03 -0400 |
| commit | 0a26f3c3388137c336fb1417ba870fde12c0fbcc (patch) | |
| tree | 6267b1295ee7b8d5a4f9e24f93516e81b393216d /docs/ref | |
| parent | 52188a5ca6bafea0a66f17baacb315d61c7b99cd (diff) | |
Fixed #26327 -- Added JsonAgg to contrib.postgres.
Thanks Tim Graham for review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/postgres/aggregates.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index f9b7be0fd3..38b876c664 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -58,6 +58,15 @@ General-purpose aggregation functions Returns ``True`` if at least one input value is true, ``None`` if all values are null or if there are no values, otherwise ``False``. +``JsonAgg`` +----------- + +.. class:: JsonAgg(expressions, **extra) + + .. versionadded:: 1.11 + + Returns the input values as a ``JSON`` array. + ``StringAgg`` ------------- |
