Re: unsupported types in 8.0.1

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: unsupported types in 8.0.1
Дата
Msg-id 20050326172406.GA10303@winnie.fuhr.org
обсуждение исходный текст
Ответ на unsupported types in 8.0.1  (Ben <bench@silentmedia.com>)
Ответы Re: unsupported types in 8.0.1  (Michael Fuhr <mike@fuhr.org>)
Re: unsupported types in 8.0.1  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Sat, Mar 26, 2005 at 08:25:24AM -0800, Ben wrote:
>
> gr-test=> select expires from invitecodes where expires <
> ((now())::abstime)::int4;
> ERROR:  unsupported type: 23

Hmmm...

CREATE TABLE foo (x integer);
INSERT INTO foo (x) VALUES (1000000000);
INSERT INTO foo (x) VALUES (2000000000);

SELECT x FROM foo WHERE x < now()::abstime::integer;
     x
------------
 1000000000
(1 row)

ANALYZE foo;

SELECT x FROM foo WHERE x < now()::abstime::integer;
ERROR:  unsupported type: 23

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

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

Предыдущее
От: Ben
Дата:
Сообщение: unsupported types in 8.0.1
Следующее
От: Michael Fuhr
Дата:
Сообщение: Re: unsupported types in 8.0.1