]> granicus.if.org Git - postgresql/commit
Remove replacement selection sort.
authorRobert Haas <rhaas@postgresql.org>
Fri, 29 Sep 2017 14:20:44 +0000 (10:20 -0400)
committerRobert Haas <rhaas@postgresql.org>
Fri, 29 Sep 2017 14:25:44 +0000 (10:25 -0400)
commit8b304b8b72b0a60f1968d39f01cf817c8df863ec
treeae476a3b7697ba10e7f9cb8e4dcb552f7632a84a
parentd2773f9bcd980cf6ed720928cd0700196608ef19
Remove replacement selection sort.

At the time replacement_sort_tuples was introduced, there were still
cases where replacement selection sort noticeably outperformed using
quicksort even for the first run.  However, those cases seem to have
evaporated as a result of further improvements made since that time
(and perhaps also advances in CPU technology).  So remove replacement
selection and the controlling GUC entirely.  This makes tuplesort.c
noticeably simpler and probably paves the way for further
optimizations someone might want to do later.

Peter Geoghegan, with review and testing by Tomas Vondra and me.

Discussion: https://postgr.es/m/CAH2-WzmmNjG_K0R9nqYwMq3zjyJJK+hCbiZYNGhAy-Zyjs64GQ@mail.gmail.com
doc/src/sgml/config.sgml
doc/src/sgml/release-9.6.sgml
src/backend/utils/init/globals.c
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/sort/tuplesort.c
src/include/miscadmin.h
src/test/regress/expected/cluster.out
src/test/regress/sql/cluster.sql