summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2016-11-12 21:42:20 +0100
committerTim Graham <timograham@gmail.com>2016-11-28 06:57:01 -0500
commitaa2cb4c622dfd5709ba89ac3cace959202318987 (patch)
treea51596027d4e4443369e66dffd757ccdb286477e /docs/ref
parent6252fd6314f66d2d303cc47c791ffefd27169b42 (diff)
Refs #26327 -- Renamed JsonAgg to JSONBAgg.
Thanks to Christian von Roques for the report.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/postgres/aggregates.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt
index 6b5e827ab2..3939023e26 100644
--- a/docs/ref/contrib/postgres/aggregates.txt
+++ b/docs/ref/contrib/postgres/aggregates.txt
@@ -58,14 +58,14 @@ 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``
------------
+``JSONBAgg``
+------------
-.. class:: JsonAgg(expressions, **extra)
+.. class:: JSONBAgg(expressions, **extra)
.. versionadded:: 1.11
- Returns the input values as a ``JSON`` array.
+ Returns the input values as a ``JSON`` array. Requires PostgreSQL ≥ 9.5.
``StringAgg``
-------------