Bug on version 12 ? - Mailing list pgsql-general

From PegoraroF10
Subject Bug on version 12 ?
Date
Msg-id 1589555314264-0.post@n3.nabble.com
Whole thread Raw
Responses Re: Bug on version 12 ?  (Michael Lewis <mlewis@entrata.com>)
Re: Bug on version 12 ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Bug on version 12 ?  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-general
select To_Json(Current_Timestamp);
returns "2020-05-15T14:49:44.266342+00:00" on version 11.7 or 12.3

So I have lots of JSONS which have timestamp on them.

select 
  JS ->> 'mydate'::text, 
  to_timestamp((JS ->> 'mydate'), 'YYYY-MM-DD HH24:MI:SS')
from (select '{"somefield": true, "otherfield": true, "mydate":
"2020-04-02T18:26:50.941531-03:00"}'::jsonb) j(JS)

This SQL works fine on 11.7 but not on 12.3 version.

ERROR: invalid value "T1" for "HH24"
Detail: Value must be an integer.
Where: SQL function "castimmutabletimestamp" statement 1

Is that a version 12 bug or a server configuration ?



--
Sent from: https://www.postgresql-archive.org/PostgreSQL-general-f1843780.html



pgsql-general by date:

Previous
From: Chris Withers
Date:
Subject: Re: surprisingly slow creation of gist index used in excludeconstraint
Next
From: Michael Lewis
Date:
Subject: Re: Bug on version 12 ?