BUG #8407: json_populate_record case sensitivity - Mailing list pgsql-bugs

From george.stragand@gmail.com
Subject BUG #8407: json_populate_record case sensitivity
Date
Msg-id E1VF9Sa-0002e2-J7@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #8407: json_populate_record case sensitivity
Re: BUG #8407: json_populate_record case sensitivity
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      8407
Logged by:          Possible bug with json_populate_record?
Email address:      george.stragand@gmail.com
PostgreSQL version: 9.3rc1
Operating system:   Ubuntu
Description:

Using PostgreSQL 9.3beta2.


SELECT version();


PostgreSQL 9.3beta2 on x86_64-unknown-linux-gnu, compiled by gcc
(Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3, 64-bit


The question is regarding json keys in uppercase.  Here's a small example:


create type testPop as (
    foobar int
);


This returns as expected:


select * from json_populate_record(null::testPop, '{"foobar": 1}');


Whereas this form, upper-cased version of foobar, returns an empty record.


select * from json_populate_record(null::testPop, '{"FOOBAR": 1}');


That could be working as designed, as 'foobar' != 'FOOBAR', and is
completely acceptable.


So, drop the type and recreate it with these statements:


drop type testPop;


create type testPop as (
    FOOBAR int
);


And this form will still return an empty record:


select * from json_populate_record(null::testPop, '{"FOOBAR": 1}');


Again, this could be 100% working as designed per the contract of column
names.  That's acceptable, but then the question is how to match keys
expressed as uppercase.  The source of the json is from an external vendor,
so not something we can go back and change directly.


Thank you.

pgsql-bugs by date:

Previous
From: Kevin Grittner
Date:
Subject: Re: BUG #8394: SQL command REINDEX doesn't work
Next
From: Alvaro Herrera
Date:
Subject: Re: BUG #8407: json_populate_record case sensitivity