[COMMITTERS] pgsql: Fix thinko in JsObjectSize() macro. - Mailing list pgsql-committers

From Tom Lane
Subject [COMMITTERS] pgsql: Fix thinko in JsObjectSize() macro.
Date
Msg-id E1dFU6i-0002b3-8B@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix thinko in JsObjectSize() macro.

The macro gave the wrong answers for a JsObject with is_json == 0:
it would return 1 if jsonb_cont == NULL, or if that wasn't NULL,
it would return 1 for any non-zero size.

We could fix that, but the only use of this macro at present is in the
JsObjectIsEmpty() macro, so it seems simpler and clearer to get rid of
JsObjectSize() and put corrected logic into JsObjectIsEmpty().

Thinko in commit cf35346e8, so no need for back-patch.

Nikita Glukhov

Discussion: https://postgr.es/m/fbd1d566-bba0-a3de-d6d0-d3b1d7c24ff2@postgrespro.ru

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e45c5be99d08d7bb6708d7bb1dd0f5d99798c6aa

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


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Prevent running pg_resetwal/pg_resetxlog against wrong-versiond
Next
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Try to ensure that stats collector's receive buffer size is atl