postgresql/contrib
Peter Eisentraut 5dfd1e5a66 Logical decoding of TRUNCATE
Add a new WAL record type for TRUNCATE, which is only used when
wal_level >= logical.  (For physical replication, TRUNCATE is already
replicated via SMGR records.)  Add new callback for logical decoding
output plugins to receive TRUNCATE actions.

Author: Simon Riggs <simon@2ndquadrant.com>
Author: Marco Nenciarini <marco.nenciarini@2ndquadrant.it>
Author: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Reviewed-by: Petr Jelinek <petr.jelinek@2ndquadrant.com>
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org>
2018-04-07 11:34:10 -04:00
..
adminpack Support new default roles with adminpack 2018-04-06 14:47:10 -04:00
amcheck Skip full index scan during cleanup of B-tree indexes when possible 2018-04-04 19:29:00 +03:00
auth_delay
auto_explain
bloom Fix errors in contrib/bloom index build. 2018-03-22 13:14:07 -04:00
btree_gin Add support of bool, bpchar, name and uuid to btree_gin 2018-04-05 18:19:10 +03:00
btree_gist
citext
cube
dblink Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
dict_int
dict_xsyn
earthdistance
file_fdw Allow insert and update tuple routing and COPY for foreign tables. 2018-04-06 19:22:03 -04:00
fuzzystrmatch
hstore
hstore_plperl Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
hstore_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
intagg
intarray
isn
jsonb_plperl Remove less-portable-than-believed test case. 2018-04-04 11:51:36 -04:00
jsonb_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
lo
ltree
ltree_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
oid2name Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
pageinspect Fix handling of non-upgraded B-tree metapages 2018-04-05 17:56:00 +03:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Allow background workers to bypass datallowconn 2018-04-05 19:02:45 +02:00
pg_standby
pg_stat_statements
pg_trgm Add strict_word_similarity to pg_trgm module 2018-03-21 14:57:42 +03:00
pg_visibility
pgcrypto Fix a boatload of typos in C comments. 2018-04-01 15:01:28 -04:00
pgrowlocks
pgstattuple Skip full index scan during cleanup of B-tree indexes when possible 2018-04-04 19:29:00 +03:00
postgres_fdw Allow insert and update tuple routing and COPY for foreign tables. 2018-04-06 19:22:03 -04:00
seg
sepgsql Blindly attempt to fix sepgsql tests broken due to 9fdb675fc5. 2018-04-06 20:54:22 -07:00
spi Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
sslinfo
start-scripts
tablefunc
tcn
test_decoding Logical decoding of TRUNCATE 2018-04-07 11:34:10 -04:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
xml2
contrib-global.mk
Makefile Transforms for jsonb to PL/Perl 2018-04-03 09:47:18 -04:00
README

The PostgreSQL contrib tree
---------------------------

This subtree contains porting tools, analysis utilities, and plug-in
features that are not part of the core PostgreSQL system, mainly
because they address a limited audience or are too experimental to be
part of the main source tree.  This does not preclude their
usefulness.

User documentation for each module appears in the main SGML
documentation.

When building from the source distribution, these modules are not
built automatically, unless you build the "world" target.  You can
also build and install them all by running "make all" and "make
install" in this directory; or to build and install just one selected
module, do the same in that module's subdirectory.

Some directories supply new user-defined functions, operators, or
types.  To make use of one of these modules, after you have installed
the code you need to register the new SQL objects in the database
system by executing a CREATE EXTENSION command.  In a fresh database,
you can simply do

    CREATE EXTENSION module_name;

See the PostgreSQL documentation for more information about this
procedure.