postgresql/contrib
Tom Lane 2dc53fe2a7 Refactor postgresImportForeignSchema to avoid code duplication.
Avoid repeating fragments of the query we're building, along the
same lines as recent cleanup in pg_dump.  I got annoyed about this
because aa769f80e broke my pending patch to change postgres_fdw's
collation handling, due to each of us having incompletely done
this same refactoring.  Let's finish that job in hopes of having
a more stable base.
2021-09-01 16:21:13 -04:00
..
adminpack
amcheck contrib/amcheck: Add heapam CHECK_FOR_INTERRUPTS(). 2021-08-26 18:42:20 -07:00
auth_delay
auto_explain Unify PostgresNode's new() and get_new_node() methods 2021-07-29 05:58:08 -04:00
bloom Unify PostgresNode's new() and get_new_node() methods 2021-07-29 05:58:08 -04:00
bool_plperl
btree_gin Fix failure of btree_gin indexscans with "char" type and </<= operators. 2021-08-10 18:10:29 -04:00
btree_gist Improve performance of float overflow checks in btree_gist 2021-08-19 10:42:44 +09:00
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Prohibit map and grep in void context 2021-08-31 11:07:04 +02:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree Adjust MSVC build scripts to parse Makefiles for defines 2021-07-29 12:01:23 +12:00
ltree_plpython
oid2name
old_snapshot
pageinspect pageinspect: Improve page_header() for pages of 32kB 2021-07-12 11:05:27 +09:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Replace RelationOpenSmgr() with RelationGetSmgr(). 2021-07-12 17:01:36 -04:00
pg_stat_statements Harden pg_stat_statements tests against CLOBBER_CACHE_ALWAYS. 2021-07-25 23:25:15 -04:00
pg_surgery Improve error messages about mismatching relkind 2021-07-08 09:44:51 +02:00
pg_trgm Avoid determining regexp subexpression matches, when possible. 2021-08-09 11:26:34 -04:00
pg_visibility Replace RelationOpenSmgr() with RelationGetSmgr(). 2021-07-12 17:01:36 -04:00
pgcrypto Add alternative output for OpenSSL 3 without legacy loaded 2021-08-10 15:08:46 +02:00
pgrowlocks
pgstattuple Improve error messages about mismatching relkind 2021-07-08 09:44:51 +02:00
postgres_fdw Refactor postgresImportForeignSchema to avoid code duplication. 2021-09-01 16:21:13 -04:00
seg
sepgsql Fix regression test output of sepgsql 2021-08-10 13:14:37 +09:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix toast rewrites in logical decoding. 2021-08-25 09:53:07 +05:30
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile
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.