timestamp handling in postgres 7.1 behaves strange

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема timestamp handling in postgres 7.1 behaves strange
Дата
Msg-id 200108082244.f78MiKp65077@hub.org
обсуждение исходный текст
Ответы Re: timestamp handling in postgres 7.1 behaves strange  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Martin Würtele (martin.wuertele@factline.com) reports a bug with a severity of 1
The lower the number the more severe it is.

Short Description
timestamp handling in postgres 7.1 behaves strange

Long Description
version: 7.1release-4 of debian/woody

when comparing timestamps i always get
ERROR:  Bad timestamp external representation 'm'

Sample Code
this works:
select timestamp (content) from factversionelement where factid=100311 and elementname='newsdate';
       timestamp
------------------------
 2010-01-02 16:00:00+01
(1 row)

this does not:
select factid from factversionelement where factid=100311 and elementname='newsdate' and timestamp (content) >=
'2001-08-08';
ERROR:  Bad timestamp external representation 'm'

this also does not:
select factid from factversionelement where factid=100311 and elementname='newsdate' and timestamp (content) >=
timestamp('2001-08-08');
ERROR:  Bad timestamp external representation 'm'


No file was uploaded with this report

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

Предыдущее
От: Thomas Lockhart
Дата:
Сообщение: Re: v7.0.2: can't use 'EXTRACT(EPOCH FROM'
Следующее
От: Thomas Lockhart
Дата:
Сообщение: Re: timestamp handling in postgres 7.1 behaves strange