pgsql: Extend index AM API for parallel index scans.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Extend index AM API for parallel index scans.
Date: 2017-01-24 21:51:11
Message-ID: E1cW8zf-0007ov-0w@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Extend index AM API for parallel index scans.

This patch doesn't actually make any index AM parallel-aware, but it
provides the necessary functions at the AM layer to do so.

Rahila Syed, Amit Kapila, Robert Haas

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/7b4ac19982a77a1a2a6f096c4a11ee7325a14d2c

Modified Files
--------------
contrib/bloom/blutils.c | 3 +
doc/src/sgml/indexam.sgml | 67 +++++++++++++++++
src/backend/access/brin/brin.c | 3 +
src/backend/access/gin/ginutil.c | 3 +
src/backend/access/gist/gist.c | 3 +
src/backend/access/hash/hash.c | 3 +
src/backend/access/index/indexam.c | 135 +++++++++++++++++++++++++++++++++--
src/backend/access/nbtree/nbtree.c | 3 +
src/backend/access/spgist/spgutils.c | 3 +
src/include/access/amapi.h | 17 +++++
src/include/access/genam.h | 9 +++
src/include/access/relscan.h | 13 ++++
src/include/c.h | 3 +
src/tools/pgindent/typedefs.list | 2 +
14 files changed, 262 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2017-01-24 21:57:47 pgsql: Add a new DestReceiver for printing tuples without catalog acces
Previous Message Robert Haas 2017-01-24 20:55:15 pgsql: Fix things so that updatable views work with partitioned tables.