postgresql/contrib
Alvaro Herrera 66ab9371a2
dblink/isolationtester/fe_utils: Use new cancel API
Commit 61461a300c introduced new functions to libpq for cancelling
queries.  This replaces the usage of the old ones in parts of the
codebase with these newer ones.  This specifically leaves out changes to
psql and pgbench, as those would need a much larger refactor to be able
to call them due to the new functions not being signal-safe; and also
postgres_fdw, because the original code there is not clear to me
(Álvaro) and not fully tested.

Author: Jelte Fennema-Nio <postgres@jeltef.nl>
Discussion: https://postgr.es/m/CAGECzQT_VgOWWENUqvUV9xQmbaCyXjtRRAYO8W07oqashk_N+g@mail.gmail.com
2024-03-18 19:28:58 +01:00
..
amcheck Fix buildfarm failures from 2af07e2f74. 2024-03-04 19:42:16 -08:00
auth_delay
auto_explain Add EXPLAIN (MEMORY) to report planner memory consumption 2024-01-29 17:53:03 +01:00
basebackup_to_shell
basic_archive Add macro for customizing an archiving WARNING message. 2024-03-04 15:41:42 -06:00
bloom
bool_plperl
btree_gin
btree_gist Fix comment on gist_stratnum_btree 2024-01-25 07:25:10 +01:00
citext
cube
dblink dblink/isolationtester/fe_utils: Use new cancel API 2024-03-18 19:28:58 +01:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Use new overflow-safe integer comparison functions. 2024-02-16 14:05:36 -06:00
hstore_plperl
hstore_plpython
intagg
intarray Use new overflow-safe integer comparison functions. 2024-02-16 14:05:36 -06:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
pageinspect Make the order of the header file includes consistent 2024-03-13 15:07:00 +01:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Replace calls to pg_qsort() with the qsort() macro. 2024-02-16 11:37:50 -06:00
pg_stat_statements Use new overflow-safe integer comparison functions. 2024-02-16 14:05:36 -06:00
pg_surgery Error message capitalisation 2024-01-18 09:35:12 +01:00
pg_trgm Use new overflow-safe integer comparison functions. 2024-02-16 14:05:36 -06:00
pg_visibility Fix contrib/pg_visibility/meson.build 2024-03-14 13:38:44 +02:00
pg_walinspect
pgcrypto pgcrypto: Fix incorrect argument vs PG_GETARG*() mappings 2024-02-14 08:59:05 +09:00
pgrowlocks
pgstattuple
postgres_fdw Make the order of the header file includes consistent 2024-03-13 15:07:00 +01:00
seg seg: Add test "security" in meson.build 2024-01-18 10:12:44 +09:00
sepgsql Update sepgsql expected output. 2024-03-05 08:45:45 -08:00
spi
sslinfo
start-scripts
tablefunc Make contrib/tablefunc crosstab() also check typmod 2024-03-09 17:32:32 -05:00
tcn
test_decoding Add a slot synchronization function. 2024-02-14 09:45:36 +05:30
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp Make the order of the header file includes consistent 2024-03-13 15:07:00 +01:00
vacuumlo
xml2 Fix incompatibilities with libxml2 >= 2.12.0. 2024-01-29 12:06:13 -05:00
contrib-global.mk
Makefile Remove the adminpack contrib extension 2024-03-04 12:39:22 +01:00
meson.build Remove the adminpack contrib extension 2024-03-04 12:39:22 +01:00
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.