postgresql/src/backend
Teodor Sigaev 8224de4f42 Indexes with INCLUDE columns and their support in B-tree
This patch introduces INCLUDE clause to index definition.  This clause
specifies a list of columns which will be included as a non-key part in
the index.  The INCLUDE columns exist solely to allow more queries to
benefit from index-only scans.  Also, such columns don't need to have
appropriate operator classes.  Expressions are not supported as INCLUDE
columns since they cannot be used in index-only scans.

Index access methods supporting INCLUDE are indicated by amcaninclude flag
in IndexAmRoutine.  For now, only B-tree indexes support INCLUDE clause.

In B-tree indexes INCLUDE columns are truncated from pivot index tuples
(tuples located in non-leaf pages and high keys).  Therefore, B-tree indexes
now might have variable number of attributes.  This patch also provides
generic facility to support that: pivot tuples contain number of their
attributes in t_tid.ip_posid.  Free 13th bit of t_info is used for indicating
that.  This facility will simplify further support of index suffix truncation.
The changes of above are backward-compatible, pg_upgrade doesn't need special
handling of B-tree indexes for that.

Bump catalog version

Author: Anastasia Lubennikova with contribition by Alexander Korotkov and me
Reviewed by: Peter Geoghegan, Tomas Vondra, Antonin Houska, Jeff Janes,
			 David Rowley, Alexander Korotkov
Discussion: https://www.postgresql.org/message-id/flat/56168952.4010101@postgrespro.ru
2018-04-07 23:00:39 +03:00
..
access Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
bootstrap Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
catalog Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
commands Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
executor Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
foreign Remove bogus "extern" annotations on function definitions. 2018-02-19 12:07:44 -05:00
jit Fix a boatload of typos in C comments. 2018-04-01 15:01:28 -04:00
lib Fix non-portable use of round(). 2018-03-31 20:26:47 -07:00
libpq Make be-secure-common.c more consistent for future SSL implementations 2018-04-02 11:37:40 -04:00
main Update copyright for 2018 2018-01-02 23:30:12 -05:00
nodes Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
optimizer Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
parser Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
partitioning Document partprune.c a little better 2018-04-07 10:35:38 -03:00
po Translation updates 2017-08-07 13:55:34 -04:00
port Fix and improve pg_atomic_flag fallback implementation. 2018-04-06 19:55:32 -07:00
postmaster Allow on-line enabling and disabling of data checksums 2018-04-05 22:04:48 +02:00
regex Update copyright for 2018 2018-01-02 23:30:12 -05:00
replication Logical replication support for TRUNCATE 2018-04-07 11:34:11 -04:00
rewrite Improve parse representation for MERGE 2018-04-06 09:38:59 +01:00
snowball Avoid unnecessary use of pg_strcasecmp for already-downcased identifiers. 2018-01-26 18:25:14 -05:00
statistics Fast ALTER TABLE ADD COLUMN with a non-NULL default 2018-03-28 10:43:52 +10:30
storage Predicate locking in hash indexes. 2018-04-07 16:59:14 +03:00
tcop Allow background workers to bypass datallowconn 2018-04-05 19:02:45 +02:00
tsearch Add json(b)_to_tsvector function 2018-04-07 20:58:03 +03:00
utils Indexes with INCLUDE columns and their support in B-tree 2018-04-07 23:00:39 +03:00
.gitignore Add .gitignore entries for AIX-specific intermediate build artifacts. 2015-07-08 20:44:22 -04:00
Makefile Faster partition pruning 2018-04-06 16:44:05 -03:00
common.mk Remove PARTIAL_LINKING build mode. 2018-03-30 17:33:04 -07:00
nls.mk Translation updates 2017-05-15 12:19:54 -04:00