Re: "ORDER BY" issue - is this a bug?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: "ORDER BY" issue - is this a bug?
Дата
Msg-id 9111.968637041@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: "ORDER BY" issue - is this a bug?  (Max Pyziur <pyz@panix.com>)
Список pgsql-bugs
Max Pyziur <pyz@panix.com> writes:
>> That's pretty bizarre (not to say difficult to believe).  What LOCALE
>> setting are you running the postmaster in?

> On none of the installations - the two 6.5.x and the 7.0.2-2 one - I
> don't have any locale set.  I get (what I think are) correct results
> with the first two.

> Does 7.0.2-2 require the setting of locale.

AFAIK its behavior should be the same as 6.5 for LOCALE issues.  That's
why I suspect an environment difference.

I can assure you there is no code in the backend that will do
case-insensitive, punctuation-insensitive comparisons --- much less any
to do so without request.  I'm betting that either this is your error,
or the strcmp() library function is doing it; and as far as I've heard,
only LOCALE environment variables might affect the behavior of strcmp().

It also seems possible that no sort is happening at all (which would be
a planner bug), and the ordering you're getting is just whatever happens
to be in the underlying table.  Does EXPLAIN show that the query is
being done with an explicit sort?

            regards, tom lane

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

Предыдущее
От: Max Pyziur
Дата:
Сообщение: Re: "ORDER BY" issue - is this a bug?
Следующее
От: Max Pyziur
Дата:
Сообщение: Re: [SQL] Re: "ORDER BY" issue - is this a bug?