You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib
Etsuro Fujita ffbb7e65a8 Fix handling of pending inserts in nodeModifyTable.c. 3 years ago
..
adminpack tests: Rename conflicting role names 3 years ago
amcheck Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
auth_delay Clean up some inconsistencies with GUC declarations 3 years ago
auto_explain meson: Add windows resource files 3 years ago
basebackup_to_shell meson: Add windows resource files 3 years ago
basic_archive Fix calculation related to temporary WAL segment name in basic_archive 3 years ago
bloom If wait_for_catchup fails under has_wal_read_bug, skip balance of test. 3 years ago
bool_plperl meson: Add windows resource files 3 years ago
btree_gin Produce more-optimal plans for bitmap scans on boolean columns. 3 years ago
btree_gist Use C library functions instead of Abs() for int64 3 years ago
citext meson: Add windows resource files 3 years ago
cube Remove unnecessary uses of Abs() 3 years ago
dblink Refactor aclcheck functions 3 years ago
dict_int meson: Add windows resource files 3 years ago
dict_xsyn meson: Add windows resource files 3 years ago
earthdistance meson: Add windows resource files 3 years ago
file_fdw Fix final warnings produced by -Wshadow=compatible-local 3 years ago
fuzzystrmatch Remove AssertArg and AssertState 3 years ago
hstore meson: Add support for building with precompiled headers 3 years ago
hstore_plperl meson: Add windows resource files 3 years ago
hstore_plpython meson: Add windows resource files 3 years ago
intagg meson: Add initial version of meson based build system 3 years ago
intarray Use fabsf() instead of Abs() or fabs() where appropriate 3 years ago
isn meson: Add windows resource files 3 years ago
jsonb_plperl meson: Add windows resource files 3 years ago
jsonb_plpython meson: Add windows resource files 3 years ago
lo meson: Add windows resource files 3 years ago
ltree Remove unnecessary uses of Abs() 3 years ago
ltree_plpython meson: Add windows resource files 3 years ago
oid2name meson: Add windows resource files 3 years ago
old_snapshot meson: Add windows resource files 3 years ago
pageinspect Mark pageinspect's disk-accessing functions as parallel restricted. 3 years ago
passwordcheck tests: Rename conflicting role names 3 years ago
pg_buffercache pg_buffercache: Add pg_buffercache_summary() 3 years ago
pg_freespacemap meson: Add windows resource files 3 years ago
pg_prewarm Clean up some inconsistencies with GUC declarations 3 years ago
pg_stat_statements pg_stat_statements: fetch stmt location/length before it disappears. 3 years ago
pg_surgery Refactor ownercheck functions 3 years ago
pg_trgm Clean up some inconsistencies with GUC declarations 3 years ago
pg_visibility meson: Add windows resource files 3 years ago
pg_walinspect Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
pgcrypto Remove redundant memset call following palloc0 3 years ago
pgrowlocks Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
pgstattuple meson: Add support for building with precompiled headers 3 years ago
postgres_fdw Fix handling of pending inserts in nodeModifyTable.c. 3 years ago
seg Use fabsf() instead of Abs() or fabs() where appropriate 3 years ago
sepgsql Clean up some inconsistencies with GUC declarations 3 years ago
spi meson: Add windows resource files 3 years ago
sslinfo meson: Add windows resource files 3 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc meson: Add windows resource files 3 years ago
tcn meson: Add windows resource files 3 years ago
test_decoding Fix assertion failures while processing NEW_CID record in logical decoding. 3 years ago
tsm_system_rows meson: Add windows resource files 3 years ago
tsm_system_time meson: Add windows resource files 3 years ago
unaccent meson: Add windows resource files 3 years ago
uuid-ossp meson: Add windows resource files 3 years ago
vacuumlo meson: Add windows resource files 3 years ago
xml2 Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
Makefile Add contrib/pg_walinspect. 3 years ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 9 years ago
meson.build meson: Add initial version of meson based build system 3 years ago

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.