Re: Order by with column ordinal and collate - fails to parse

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: Order by with column ordinal and collate - fails to parse
Дата
Msg-id 51C31541.6020901@gmail.com
обсуждение исходный текст
Ответ на Order by with column ordinal and collate - fails to parse  (Tim Kane <tim.kane@gmail.com>)
Ответы Re: Order by with column ordinal and collate - fails to parse  (Tim Kane <tim.kane@gmail.com>)
Список pgsql-general
On 06/20/2013 07:05 AM, Tim Kane wrote:
> Hi all,
>
> I seem to be having problems constructing a query that combines the use
> of distinct, order by, and collate key words.
>
> For instance:
>
> # select distinct(value)  from properties order by 1 collate "C";
> ERROR:  collations are not supported by type integer
> LINE 1: ... distinct(value)  from properties order by 1 collate "C...
>                                                               ^

How about:

select distinct(value) collate "C" from properties order by 1 ;

>
> Am I just being a numpty here? I can work around it with a subquery, but
> this seems like a bug to me. Particularly the first example where my
> ordinal field reference is treated as an integer literal. I should note
> that the field 'value' is of type 'text' (not integer).
>
> Any input appreciated. Thanks :)
>


--
Adrian Klaver
adrian.klaver@gmail.com


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

Предыдущее
От: Alan Hodgson
Дата:
Сообщение: Re: Postgres DB crashing
Следующее
От: Tim Kane
Дата:
Сообщение: Re: Order by with column ordinal and collate - fails to parse