pgsql: Don't truncate away non-key attributes for leftmost downlinks.

From: Teodor Sigaev <teodor(at)sigaev(dot)ru>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Don't truncate away non-key attributes for leftmost downlinks.
Date: 2018-05-04 09:38:45
Message-ID: E1fEXAr-00064q-DW@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't truncate away non-key attributes for leftmost downlinks.

nbtsort.c does not need to truncate away non-key attributes for the
minimum key of the leftmost page on a level, since this is only used to
build a minus infinity downlink for the level's leftmost page.
Truncating away non-key attributes in advance of truncating away all
attributes in _bt_sortaddtup() does not affect the correctness of CREATE
INDEX, but it is misleading.

Author: Peter Geoghegan
Discussion: https://www.postgresql.org/message-id/CAH2-WzkAS2M3ussHG-s_Av=Zo6dPjOxyu5fNRkYnxQV+YzGQ4w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2a9e04f0a8ada12d4af4f095e4dbe164e2983bce

Modified Files
--------------
src/backend/access/nbtree/nbtsort.c | 30 ++++++++++++++----------------
1 file changed, 14 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2018-05-04 13:36:39 pgsql: pg_dump: Use current_database() instead of PQdb()
Previous Message Teodor Sigaev 2018-05-04 08:29:05 pgsql: Re-think predicate locking on GIN indexes.