Re: TO_DATE function between PostgreSQL 8.2 and 9.4

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: John W Higgins <wishdev(at)gmail(dot)com>, pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: TO_DATE function between PostgreSQL 8.2 and 9.4
Date: 2022-05-17 18:11:49
Message-ID: b25f7f07-4b7e-ccdb-abe1-fc5ccfede1fa@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 5/17/22 9:23 AM, John W Higgins wrote:
> Good Morning,
>

> Just create the missing function
>
> create function to_date(timestamp with time zone, text) RETURNS text AS
>    'SELECT to_date($1::text, $2)::text'
>    LANGUAGE SQL
>    IMMUTABLE;

That is just kicking the can down the road. What the OP is running into
is the tip of the iceberg of the changes not only in 8.3 but the other 6
major versions involved. The time spent trying to create a compatibility
layer for this jump and subsequent jumps would be better spent actually
making the code current.

> John

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bryn Llewellyn 2022-05-17 20:21:05 Re: Restricting user to see schema structure
Previous Message Thomas Kellerer 2022-05-17 16:58:49 Re: TO_DATE function between PostgreSQL 8.2 and 9.4