pgsql: Fix typcategory labeling of jsonb. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix typcategory labeling of jsonb.
Date
Msg-id E1Wikom-0007An-1R@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix typcategory labeling of jsonb.

Dunno who had the cute idea of labeling jsonb as typcategory 'C',
but it is not a composite type.  Label it 'U', since that's what
json is using.

Branch
------
master

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

Modified Files
--------------
src/include/catalog/catversion.h |    2 +-
src/include/catalog/pg_type.h    |    2 +-
2 files changed, 2 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: More jsonb cleanup.
Next
From: Tom Lane
Date:
Subject: pgsql: Teach add_json() that jsonb is of TYPCATEGORY_JSON.