Re: bug with distinct?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: bug with distinct?
Дата
Msg-id 12736.981768203@sss.pgh.pa.us
обсуждение исходный текст
Ответ на bug with distinct?  (Alfonso Peniche <alfonso@iteso.mx>)
Ответы Re: bug with distinct?  (Peniche Lopez Alfonso Jose <alfonso@iteso.mx>)
Список pgsql-general
Alfonso Peniche <alfonso@iteso.mx> writes:
>      SELECT distinct 'mod_type' ,currval('mytable_idmytable_seq') from
> mytable;
> ERROR:  Unable to identify an ordering operator '<' for type 'unknown'
>  Use an explicit ordering operator or modify the query

You need to give the literal an explicit type, eg,

     SELECT distinct 'mod_type'::text, currval('mytable_idmytable_seq') from
     mytable;

7.1 will default to assuming that you meant 'text' in this scenario,
but older releases are pickier.

            regards, tom lane

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

Предыдущее
От: Alfred Perlstein
Дата:
Сообщение: Re: Re: Re: PostgreSQL over NFS?
Следующее
От: Mike Castle
Дата:
Сообщение: Re: Re: Re: PostgreSQL over NFS?