strange order by

Поиск
Список
Период
Сортировка
От Jean-Yves F. Barbier
Тема strange order by
Дата
Msg-id 20111230192027.40281096@anubis.defcon1
обсуждение исходный текст
Список pgsql-novice
Hi list,

My svr & clients are in fr_FR.utf-8.

SELECT note FROM tst1m ORDER BY note DESC;
return me strings beginning with 'Z' or 'z' but also 'ẞ'!

I also wonder why the generated query:
SELECT id,name,note FROM tst1m ORDER BY note DESC LIMIT 400 OFFSET 0;
is mixing rows beginning with 'Z' and 'z' instead of presenting
'Z' before 'z' (same reason?)

Is it the base collation that returns me these strange results
(or what else)?  And I can I recover a normal behavior?

JY
--
Dammit Jim, I'm an actor, not a doctor.

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

Предыдущее
От: "Jean-Yves F. Barbier"
Дата:
Сообщение: Re: index refuses to build [DEFINITELY SOLVED :-]
Следующее
От: "Jean-Yves F. Barbier"
Дата:
Сообщение: is it normal behavior of index?