Re: timestamp() broken in 7.2.4? - Mailing list pgsql-general

From Ian Barwick
Subject Re: timestamp() broken in 7.2.4?
Date
Msg-id 200306270104.07778.barwick@gmx.net
Whole thread Raw
In response to timestamp() broken in 7.2.4?  (Holger Marzen <holger@marzen.de>)
List pgsql-general
On Friday 27 June 2003 00:47, Holger Marzen wrote:
> In 7.1.3 I can use
>
>   select timestamp(date '2001-01-01', time '00:00');
>
> but in 7.2.4 I get
>
>   db1=# select timestamp(date '2001-01-01', time '00:00');
>   ERROR:  parser: parse error at or near "date"

changed in 7.2, see:
http://www.postgresql.org/docs/view.php?version=7.3&idoc=0&file=release-7-2.html

"The timestamp(), time(), and interval() functions are no longer available.
Instead of timestamp(), use timestamp 'string' or CAST. "

-> something like:
  select timestamp '2001-01-01 00:00';
should work


Ian Barwick
barwick@gmx.net

pgsql-general by date:

Previous
From: Lamar Owen
Date:
Subject: Re: 7.3.3 RPM build
Next
From: Stephan Szabo
Date:
Subject: Re: timestamp() broken in 7.2.4?