From b2d145bff02e5f278649aca0e6fb6142ea2f298d Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Mon, 22 Dec 2014 14:12:06 -0500 Subject: [PATCH] Fix documentation of argument type of json_agg and jsonb_agg json_agg was originally designed to aggregate records. However, it soon became clear that it is useful for aggregating all kinds of values and that's what we have on 9.3 and 9.4, and in head for it and jsonb_agg. The documentation suggested otherwise, so this fixes it. --- doc/src/sgml/func.sgml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 6f3094656c..c6c3bf8017 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -12230,15 +12230,15 @@ NULL baz(3 rows) json_agg - json_agg(record) + json_agg(expression) - record + expression json - aggregates records as a JSON array of objects + aggregates values as a JSON array @@ -12246,15 +12246,15 @@ NULL baz(3 rows) jsonb_agg - jsonb_agg(record) + jsonb_agg(expression) - record + expression jsonb - aggregates records as a JSON array of objects + aggregates values as a JSON array -- 2.40.0