20181501 is illegal. Working OK. ctrlmdb=> select to_date('20181501','YYYYMMDD') ctrlmdb-> \g ERROR: date/time field value out of range: "20181501"
From: Ravi Krishna <sr_kris...@aol.com> Sent: Wednesday, October 23, 2019 5:28 PM To: Abraham, Danny <danny_abra...@bmc.com>; pgsql-gene...@postgresql.org Subject: [EXTERNAL] Re: date function bug > ctrlmdb=> select to_date('2018100X','YYYYMMDD'); > to_date ------------ >2018-10-01 >(1 row) I am able to reproduce this in 11.5 It seems PG can take a single digit for Day too. select to_date('2018109','YYYYMMDD') produces 2018-10-09.