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
Masahiko Sawada d3b6183dd9 Add mem_exceeded_count column to pg_stat_replication_slots. 3 months ago
..
amcheck Fix various incorrect filename references 3 months ago
auth_delay
auto_explain Allow resetting unknown custom GUCs with reserved prefixes. 5 months ago
basebackup_to_shell meson: Increase minimum version to 0.57.2 6 months ago
basic_archive Remove translation marker from libpq-be-fe-helpers.h. 5 months ago
bloom Remove unneeded casts of BufferGetPage() result 4 months ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 9 months ago
btree_gin Add more cross-type comparisons to contrib/btree_gin. 6 months ago
btree_gist Do a tiny bit of header file maintenance 3 months ago
citext
cube Allow redeclaration of typedef yyscan_t 4 months ago
dblink postgres_fdw and dblink should check if backend has MyProcPort 5 months ago
dict_int
dict_xsyn
earthdistance
file_fdw Keep track of what RTIs a Result node is scanning. 3 months ago
fuzzystrmatch
hstore Fix varatt versus Datum type confusions 5 months ago
hstore_plperl
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
intagg
intarray Track the maximum possible frequency of non-MCE array elements. 3 months ago
isn Fix various incorrect filename references 3 months ago
jsonb_plperl
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
lo
ltree Mop-up for Datum conversion cleanups. 5 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
oid2name
pageinspect Don't include access/htup_details.h in executor/tuptable.h 3 months ago
passwordcheck
pg_buffercache Add CHECK_FOR_INTERRUPTS in contrib/pg_buffercache functions. 4 months ago
pg_freespacemap
pg_logicalinspect
pg_overexplain Keep track of what RTIs a Result node is scanning. 3 months ago
pg_prewarm bufmgr: Remove freelist, always use clock-sweep 4 months ago
pg_stat_statements Add ExplainState argument to pg_plan_query() and planner(). 3 months ago
pg_surgery
pg_trgm Put "excludeOnly" GIN scan keys at the end of the scankey array. 4 months ago
pg_visibility read_stream: Introduce and use optional batchmode support 9 months ago
pg_walinspect Don't include access/htup_details.h in executor/tuptable.h 3 months ago
pgcrypto Revert "Make some use of anonymous unions [pgcrypto]" 3 months ago
pgrowlocks Add missing Datum conversions 5 months ago
pgstattuple pgstattuple: Improve reports generated for indexes (hash, gist, btree) 3 months ago
postgres_fdw Implement Eager Aggregation 3 months ago
seg Allow redeclaration of typedef yyscan_t 4 months ago
sepgsql Avoid including commands/dbcommands.h in so many places 4 months ago
spi Use pg_ascii_tolower()/pg_ascii_toupper() where appropriate. 6 months ago
sslinfo
start-scripts
tablefunc
tcn
test_decoding Add mem_exceeded_count column to pg_stat_replication_slots. 3 months ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2 Don't include access/htup_details.h in executor/tuptable.h 3 months ago
Makefile
README
contrib-global.mk
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.