Clean up new JSON API typedefs The new JSON API uses a bit of an unusual typedef scheme, where for example OkeysState is a pointer to okeysState. And that's not applied consistently either. Change that to the more usual PostgreSQL style where struct typedefs are upper case, and use pointers explicitly.
Branch ------ REL9_3_STABLE Details ------- http://git.postgresql.org/pg/commitdiff/ef8321a57d38c00592614a6d8f0872a721d301c3 Modified Files -------------- src/backend/utils/adt/json.c | 29 ++++--- src/backend/utils/adt/jsonfuncs.c | 166 ++++++++++++++++++------------------- src/include/utils/jsonapi.h | 7 +- 3 files changed, 100 insertions(+), 102 deletions(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
