pgsql: Fix a couple of trivial issues in jsonb.c

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix a couple of trivial issues in jsonb.c
Date: 2015-02-27 21:59:23
Message-ID: E1YRSwN-0004aA-R2@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix a couple of trivial issues in jsonb.c

Typo "aggreagate" appeared three times, and the return value of function
JsonbIteratorNext() was being assigned to an int variable in a bunch of
places.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/654809e770ce270c0bb9de726c5df1ab193d60f0

Modified Files
--------------
src/backend/utils/adt/jsonb.c | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-02-27 22:17:01 pgsql: Invent a memory context reset/delete callback mechanism.
Previous Message Alvaro Herrera 2015-02-27 21:40:26 pgsql: Fix table_rewrite event trigger for ALTER TYPE/SET DATA TYPE CAS