]> granicus.if.org Git - postgresql/commit
Fix possible sorting error when aborting use of abbreviated keys.
authorRobert Haas <rhaas@postgresql.org>
Mon, 22 Aug 2016 19:22:11 +0000 (15:22 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 22 Aug 2016 19:30:31 +0000 (15:30 -0400)
commit48b9ca0b60ce4e92caf6b2ad68d40d09f1795fca
tree3cfca38c0b4128fe7c6cd9f72862cae89e65a2ce
parentc3813268a7eca8000b8963c079e521eccd960620
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.
src/backend/utils/sort/tuplesort.c