pgsql: Convert gist to compute page level xid horizon on primary.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Convert gist to compute page level xid horizon on primary.
Date: 2019-04-22 21:51:40
Message-ID: E1hIgqi-0000Bn-Qw@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Convert gist to compute page level xid horizon on primary.

Due to parallel development, gist added the missing conflict
information in c952eae52a3, while 558a9165e08 moved that computation
to the primary for the index types that already had it. Thus adapt
gist to also compute on the primary, using
index_compute_xid_horizon_for_tuples() instead of its own copy of the
logic.

This also adds pg_waldump support for XLOG_GIST_DELETE records, which
previously was not properly present.

Bumps WAL version.

Author: Andres Freund
Discussion: https://postgr.es/m/20190406050243.bszosdg4buvabfrt@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b5f58cf213bdab7e726f7b09c1137b4ea397fc0b

Modified Files
--------------
src/backend/access/gist/gist.c | 8 +-
src/backend/access/gist/gistxlog.c | 153 +--------------------------------
src/backend/access/rmgrdesc/gistdesc.c | 7 +-
src/include/access/gist_private.h | 2 +-
src/include/access/gistxlog.h | 3 +-
src/include/access/xlog_internal.h | 2 +-
6 files changed, 18 insertions(+), 157 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2019-04-23 06:47:20 pgsql: Fix detection of passwords hashed with MD5 or SCRAM-SHA-256
Previous Message Andres Freund 2019-04-22 21:07:51 Re: pgsql: Allow insert and update tuple routing and COPY for foreign table