Re: difference between current_timestamp and now() in quotes

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: difference between current_timestamp and now() in quotes
Дата
Msg-id 20090122161646.GG4296@alvh.no-ip.org
обсуждение исходный текст
Ответ на difference between current_timestamp and now() in quotes  (Grzegorz Jaśkiewicz <gryzman@gmail.com>)
Ответы Re: difference between current_timestamp and now() in quotes  (Adrian Klaver <aklaver@comcast.net>)
Список pgsql-general
Grzegorz Jaśkiewicz escribió:

> test2=# insert into dupa(a) select 'current_timestamp' from
> generate_series(1,100);
> ERROR:  date/time value "current" is no longer supported
> LINE 1: insert into dupa(a) select 'current_timestamp' from generate...
>                                    ^
> test2=# insert into dupa(a) select 'now()' from generate_series(1,100);
> INSERT 0 100
>
>
> Any ideas why the difference ?

The parser handles CURRENT_TIMESTAMP (and others) specially, and doesn't
recognize it in quotes.  I don't know why 'now()' works; I think it is a
literal of type unknown.  I guess it's expanded to the actual value in
later parsing stages.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

В списке pgsql-general по дате отправления:

Предыдущее
От: "Albe Laurenz"
Дата:
Сообщение: Re: [ADMIN] bytea size limit?
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: difference between current_timestamp and now() in quotes