Re: BUG #18857: Abnormal string comparison results - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #18857: Abnormal string comparison results
Date
Msg-id 985480.1742481975@sss.pgh.pa.us
Whole thread Raw
In response to BUG #18857: Abnormal string comparison results  (PG Bug reporting form <noreply@postgresql.org>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> As shown in the example below, on the ASCII table ‘?’ is larger than ‘&’. I
> don't think ‘t’ should be returned here. In the MySQL database it does
> return 0.
> Is there some special consideration here?

Read about collations at

https://www.postgresql.org/docs/current/collation.html

You are probably using a non-C collation.  You could say

postgres=# SELECT ('?' <= '&*CcCV5' collate "C");
 ?column?
----------
 f
(1 row)

but more likely you want to switch it at the database level.

            regards, tom lane



pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #18859: ERROR: unexpected plan node type: 356
Next
From: Tom Lane
Date:
Subject: Re: BUG #18858: client does not support server version newer than 15.12 but actual version is 15.8.1