From: | Bruce Momjian <bruce(at)momjian(dot)us> |
---|---|
To: | email(at)andersonloyola(dot)com(dot)br |
Cc: | pgsql-bugs(at)postgresql(dot)org, Andrew Dunstan <andrew(at)dunslane(dot)net> |
Subject: | Re: BUG #8676: Bug Money JSON |
Date: | 2013-12-17 14:10:21 |
Message-ID: | 20131217141021.GA19059@momjian.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
On Wed, Dec 11, 2013 at 02:30:04PM +0000, email(at)andersonloyola(dot)com(dot)br wrote:
> The following bug has been logged on the website:
>
> Bug reference: 8676
> Logged by: Anderson Cristian da Silva
> Email address: email(at)andersonloyola(dot)com(dot)br
> PostgreSQL version: 9.3.2
> Operating system: Centos 6.3 (Final)
> Description:
>
> Failed to convert money to json EX.:
>
>
> postgres=# SELECT to_json(a) FROM (VALUES(1000::money)) a(salario);
> to_json
> -----------------------
> {"salario":$1,000.00}
> (1 row)
>
>
> postgres=# SELECT to_json(a)->'salario' FROM (VALUES(1000::money))
> a(salario);
> ERROR: invalid input syntax for type json
> DETAIL: Token "$" is invalid.
> CONTEXT: JSON data, line 1: {"salario":$...
Well, that is very interesting. It works for integer and text, and it
works if you ask for the entire relation, but if you ask just for that
field _and_ it is money, it fails. Sure looks like a bug to me.
--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ Everyone has their own god. +
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew Dunstan | 2013-12-17 14:44:00 | Re: BUG #8676: Bug Money JSON |
Previous Message | Tom Lane | 2013-12-17 00:18:42 | Re: [BUG] Segmentation fault in pfree in PLy_output_tuple_funcs |
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2013-12-17 14:30:54 | Re: Changeset Extraction Interfaces |
Previous Message | Andres Freund | 2013-12-17 12:48:05 | Re: logical changeset generation v6.8 |