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-0004aB-R7@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
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/ecfe1a1889bc8640a4e3b8659d69ec1fd0e30b4a

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

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