Re: BUG #8676: Bug Money JSON - Mailing list pgsql-bugs

From Bruce Momjian
Subject Re: BUG #8676: Bug Money JSON
Date
Msg-id 20131217141021.GA19059@momjian.us
Whole thread Raw
In response to BUG #8676: Bug Money JSON  (email@andersonloyola.com.br)
Responses Re: BUG #8676: Bug Money JSON  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-bugs
On Wed, Dec 11, 2013 at 02:30:04PM +0000, email@andersonloyola.com.br wrote:
> The following bug has been logged on the website:
>
> Bug reference:      8676
> Logged by:          Anderson Cristian da Silva
> Email address:      email@andersonloyola.com.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@momjian.us>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + Everyone has their own god. +

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: [BUG] Segmentation fault in pfree in PLy_output_tuple_funcs
Next
From: Andrew Dunstan
Date:
Subject: Re: BUG #8676: Bug Money JSON