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
Nathan Bossart db6a4a985b Deprecate MD5 passwords. 1 year ago
..
amcheck Remove useless casts to (void *) 1 year ago
auth_delay Remove unused #include's from contrib, pl, test .c files 1 year ago
auto_explain Remove unused #include's from contrib, pl, test .c files 1 year ago
basebackup_to_shell Update copyright for 2024 2 years ago
basic_archive Remove unused #include's from contrib, pl, test .c files 1 year ago
bloom Remove useless casts to (void *) 1 year ago
bool_plperl Update copyright for 2024 2 years ago
btree_gin Remove unused #include's from contrib, pl, test .c files 1 year ago
btree_gist Remove useless casts to (void *) 1 year ago
citext Remove unused #include's from contrib, pl, test .c files 1 year ago
cube Include bison header files into implementation files 1 year ago
dblink Don't bother checking the result of SPI_connect[_ext] anymore. 1 year ago
dict_int Update copyright for 2024 2 years ago
dict_xsyn Remove unused #include's from contrib, pl, test .c files 1 year ago
earthdistance Update copyright for 2024 2 years ago
file_fdw Remove useless casts to (void *) 1 year ago
fuzzystrmatch Remove unused #include's from contrib, pl, test .c files 1 year ago
hstore Remove useless casts to (void *) 1 year ago
hstore_plperl Update copyright for 2024 2 years ago
hstore_plpython Update copyright for 2024 2 years ago
intagg Update copyright for 2024 2 years ago
intarray Remove useless casts to (void *) 1 year ago
isn Remove unused #include's from contrib, pl, test .c files 1 year ago
jsonb_plperl Update copyright for 2024 2 years ago
jsonb_plpython Update copyright for 2024 2 years ago
lo contrib/lo: Use SQL-standard function bodies 1 year ago
ltree Remove useless casts to (void *) 1 year ago
ltree_plpython Update copyright for 2024 2 years ago
oid2name Apply more quoting to GUC names in messages 1 year ago
pageinspect Remove unused #include's from contrib, pl, test .c files 1 year ago
passwordcheck Deprecate MD5 passwords. 1 year ago
pg_buffercache Add pg_buffercache_evict() function for testing. 2 years ago
pg_freespacemap pg_freespacemap: Use SQL-standard function bodies 1 year ago
pg_logicalinspect Add contrib/pg_logicalinspect. 1 year ago
pg_prewarm Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_stat_statements pg_stat_statements: Avoid some locking during PGSS entry scans 1 year ago
pg_surgery Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_trgm Remove useless casts to (void *) 1 year ago
pg_visibility Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_walinspect Assign error codes where missing for user-facing failures 2 years ago
pgcrypto Remove useless casts to (void *) 1 year ago
pgrowlocks Remove unused #include's from contrib, pl, test .c files 1 year ago
pgstattuple Remove unused #include's from contrib, pl, test .c files 1 year ago
postgres_fdw Remove useless casts to (void *) 1 year ago
seg Use generateClonedIndexStmt to propagate CREATE INDEX to partitions. 1 year ago
sepgsql Add pg_constraint rows for not-null constraints 1 year ago
spi Remove unused #include's from contrib, pl, test .c files 1 year ago
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 2 years ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Remove unused #include's from contrib, pl, test .c files 1 year ago
tcn Update copyright for 2024 2 years ago
test_decoding Add pg_constraint rows for not-null constraints 1 year ago
tsm_system_rows Remove unused #include's from contrib, pl, test .c files 1 year ago
tsm_system_time Remove unused #include's from contrib, pl, test .c files 1 year ago
unaccent Remove unused #include's from contrib, pl, test .c files 1 year ago
uuid-ossp Make the order of the header file includes consistent 2 years ago
vacuumlo Apply more quoting to GUC names in messages 1 year ago
xml2 xml2: Add tests for functions xpath_nodeset() and xpath_list() 1 year ago
Makefile Add contrib/pg_logicalinspect. 1 year ago
README
contrib-global.mk
meson.build Add contrib/pg_logicalinspect. 1 year 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.