From d92b1cdbab408d8f1299257125c9ae375f3ca644 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 7 Apr 2021 14:33:21 +0300 Subject: Revert "Add sortsupport for gist_btree opclasses, for faster index builds." This reverts commit 9f984ba6d23dc6eecebf479ab1d3f2e550a4e9be. It was making the buildfarm unhappy, apparently setting client_min_messages in a regression test produces different output if log_statement='all'. Another issue is that I now suspect the bit sortsupport function was in fact not correct to call byteacmp(). Revert to investigate both of those issues. --- src/backend/access/gist/gistbuild.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/backend/access/gist/gistbuild.c') diff --git a/src/backend/access/gist/gistbuild.c b/src/backend/access/gist/gistbuild.c index a90e3de3326..1054f6f1f2e 100644 --- a/src/backend/access/gist/gistbuild.c +++ b/src/backend/access/gist/gistbuild.c @@ -260,7 +260,6 @@ gistbuild(Relation heap, Relation index, IndexInfo *indexInfo) /* * Sort all data, build the index from bottom up. */ - elog(DEBUG1, "using sorted GiST build"); buildstate.sortstate = tuplesort_begin_index_gist(heap, index, maintenance_work_mem, -- cgit v1.2.3