Re: "ORDER BY" issue - is this a bug? - Mailing list pgsql-bugs

From Tom Lane
Subject Re: "ORDER BY" issue - is this a bug?
Date
Msg-id 9111.968637041@sss.pgh.pa.us
Whole thread Raw
In response to Re: "ORDER BY" issue - is this a bug?  (Max Pyziur <pyz@panix.com>)
List 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 by date:

Previous
From: Max Pyziur
Date:
Subject: Re: "ORDER BY" issue - is this a bug?
Next
From: Max Pyziur
Date:
Subject: Re: [SQL] Re: "ORDER BY" issue - is this a bug?