pgsql: Adjust tuplesort.c based on the fact that we never use the OS's

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Adjust tuplesort.c based on the fact that we never use the OS's
Date: 2012-01-26 19:45:56
Message-ID: E1RqVGe-0002ae-O5@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Adjust tuplesort.c based on the fact that we never use the OS's qsort().

Our own qsort_arg() implementation doesn't have the defect previously
observed to affect only QNX 4, so it seems sufficiently to assert that
it isn't broken rather than retesting. Also, update a few comments to
clarify why it's valuable to retain a tie-break rule based on CTID
during index builds.

Peter Geoghegan, with slight tweaks by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c5a03256c725c09c32a5c498bd7c8799ed3ec2a0

Modified Files
--------------
src/backend/utils/sort/tuplesort.c | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2012-01-27 03:19:01 pgsql: Fix pg_upgrade --help text for --user to not use a plural cluste
Previous Message Robert Haas 2012-01-26 17:47:24 pgsql: Be more clear when a new column name collides with a system colu