BUG #16077: Sorting of table list depends on platform - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #16077: Sorting of table list depends on platform
Date
Msg-id 16077-6f297cabd744c86c@postgresql.org
Whole thread Raw
Responses Re: BUG #16077: Sorting of table list depends on platform
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16077
Logged by:          Ten Ten
Email address:      thomas.bessou@stockly.ai
PostgreSQL version: 10.9
Operating system:   Mac OS/Linux
Description:

Running the following query:
```
SELECT table_name, table_schema from information_schema.tables 
WHERE table_schema = 'your schema' AND table_type LIKE 'BASE TABLE' ORDER BY
table_name;
```
The output differs on Linux and Mac versions, though the tables are the same
(setup by the same script from an empty database).

We would assume ORDER BY has the same behaviour on all platforms.

We have the same output for this query on Linux Postgres 10.6 and Linux
Postgres 11.5.
On Mac with Postgres 10.6 and on Mac with Postgres 10.9, we also have the
same output, but it is different from the Linux one.

This causes issues such as this one:
https://github.com/diesel-rs/diesel/issues/2202#issuecomment-544148551

Specifically, it seems the Linux version ignores underscores ('_') while
sorting this query, while the Mac version doesn't.


pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #16076: JIT causes huge delays in a complex query. jit=off solves it.
Next
From: Tom Lane
Date:
Subject: Re: BUG #16077: Sorting of table list depends on platform