Fix possible sorting error when aborting use of abbreviated keys.

Robert Haas <rhaas@postgresql.org>

Commit: da9659f87c868ae638ea34654737f9ef0409211f
Author: Robert Haas <rhaas@postgresql.org>
Date: 2016-08-22T19:30:37Z
Releases: 9.5.5
Fix possible sorting error when aborting use of abbreviated keys.

Due to an error in the abbreviated key abort logic, the most recently
processed SortTuple could be incorrectly marked NULL, resulting in an
incorrect final sort order.

In the worst case, this could result in a corrupt btree index, which
would need to be rebuild using REINDEX.  However, abbrevation doesn't
abort very often, not all data types use it, and only one tuple would
end up in the wrong place, so the practical impact of this mistake may
be somewhat limited.

Report and patch by Peter Geoghegan.

Files

PathChange+/−
src/backend/utils/sort/tuplesort.c modified +3 −3