postgresql/contrib
Peter Eisentraut 8c852ba9a4 Allow some exclusion constraints on partitions
Previously we only allowed unique B-tree constraints on partitions
(and only if the constraint included all the partition keys).  But we
could allow exclusion constraints with the same restriction.  We also
require that those columns be compared for equality, not something
like &&.

Author: Paul A. Jungwirth <pj@illuminatedcomputing.com>
Reviewed-by: Ronan Dunklau <ronan.dunklau@aiven.io>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://www.postgresql.org/message-id/flat/ec8b1d9b-502e-d1f8-e909-1bf9dffe6fa5@illuminatedcomputing.com
2023-07-12 09:25:17 +02:00
..
adminpack
amcheck Fix test of pg_stat_io for wal_level=minimal. 2023-07-01 10:00:39 -07:00
auth_delay
auto_explain
basebackup_to_shell
basic_archive
bloom Remove incidental md5() function uses from several tests 2023-07-04 14:31:57 +02:00
bool_plperl
btree_gin
btree_gist Allow some exclusion constraints on partitions 2023-07-12 09:25:17 +02:00
citext
cube Handle \v as a whitespace character in parsers 2023-07-06 08:16:24 +09:00
dblink Refactor some code related to wait events "BufferPin" and "Extension" 2023-07-03 11:01:02 +09:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Handle \v as a whitespace character in parsers 2023-07-06 08:16:24 +09:00
hstore_plperl
hstore_plpython
intagg
intarray intarray: Prevent out-of-bound memory reads with gist__int_ops 2023-06-15 13:45:34 +09:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
old_snapshot
pageinspect
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Refactor some code related to wait events "BufferPin" and "Extension" 2023-07-03 11:01:02 +09:00
pg_stat_statements pg_stat_statements: Fix second comment related to entry resets 2023-06-29 09:17:26 +09:00
pg_surgery
pg_trgm
pg_visibility
pg_walinspect
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw Remove expensive test of postgres_fdw batch inserts 2023-07-03 18:16:58 +02:00
seg Handle \v as a whitespace character in parsers 2023-07-06 08:16:24 +09:00
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Add BEGIN/COMMIT for transactional messages during decoding. 2023-07-11 08:31:11 +05:30
tsm_system_rows
tsm_system_time
unaccent Fix regression tests of unaccent to work without UTF8 support 2023-07-04 08:05:00 +09:00
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile
meson.build
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.