pgsql: Finish reverting "recheck_on_update" patch.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Finish reverting "recheck_on_update" patch.
Date: 2019-01-15 17:07:18
Message-ID: E1gjSBK-0008B1-Iy@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Finish reverting "recheck_on_update" patch.

This reverts commit c203d6cf8 and some follow-on fixes, completing the
task begun in commit 5d28c9bd7. If that feature is ever resurrected,
the code will look quite a bit different from this, so it seems best
to start from a clean slate.

The v11 branch is not touched; in that branch, the recheck_on_update
storage option remains present, but nonfunctional and undocumented.

Discussion: https://postgr.es/m/20190114223409.3tcvejfhlvbucrv5@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1c53c4dec3985512f7f2f53c9d76a5295cd0a2dd

Modified Files
--------------
src/backend/access/common/reloptions.c | 45 +------------
src/backend/access/heap/heapam.c | 109 ++----------------------------
src/backend/catalog/index.c | 5 +-
src/backend/utils/cache/relcache.c | 118 ++-------------------------------
src/bin/psql/tab-complete.c | 4 +-
src/include/access/reloptions.h | 2 -
src/include/utils/rel.h | 12 +---
src/include/utils/relcache.h | 3 +-
8 files changed, 21 insertions(+), 277 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2019-01-15 20:43:12 pgsql: Move vacuumlazy.c into access/heap.
Previous Message Andres Freund 2019-01-15 01:16:11 pgsql: Don't include genam.h from execnodes.h and relscan.h anymore.