Re: SELECT 'NOW()' - OK, SELECT 'CLOCK_TIMESTAMP()' - ERROR

From: Ian Barwick <ian(at)2ndquadrant(dot)com>
To: Piotr Gasidło <quaker(at)barbara(dot)eu(dot)org>, pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: SELECT 'NOW()' - OK, SELECT 'CLOCK_TIMESTAMP()' - ERROR
Date: 2014-08-22 07:00:10
Message-ID: 53F6EA7A.2030408@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 14/08/22 15:40, Piotr Gasidło wrote:
> Hello,
>
> I found strange PostgreSQL 9.3 behavior:
>
>> select now()::timestamp, 'now()'::timestamp;
> now | timestamp
> ----------------------------+----------------------------
> 2014-08-22 08:34:00.883268 | 2014-08-22 08:34:00.883268
>
> Second column is now() in single apostrophes.
>
> Now, I tried similar function, clock_timestamp() and get:
>
>> select clock_timestamp()::timestamp, 'clock_timestamp()'::timestamp;
> ERROR: invalid input syntax for type timestamp: "clock_timestamp()"
> LINE 1: select clock_timestamp()::timestamp, 'clock_timestamp()'::ti...
> ^
>
> Why is NOW() so special? Where is it documented?

Here:
http://www.postgresql.org/docs/current/interactive/functions-datetime.html#FUNCTIONS-DATETIME-CURRENT

"All the date/time data types also accept the special literal value 'now' to
specify the current date and time"

and also here:

http://www.postgresql.org/docs/9.3/static/datatype-datetime.html#AEN5861

Regards

Ian Barwick

--
Ian Barwick http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

In response to

Browse pgsql-general by date

  From Date Subject
Next Message David G Johnston 2014-08-22 07:05:35 Re: SELECT 'NOW()' - OK, SELECT 'CLOCK_TIMESTAMP()' - ERROR
Previous Message Piotr Gasidło 2014-08-22 06:40:22 SELECT 'NOW()' - OK, SELECT 'CLOCK_TIMESTAMP()' - ERROR