postgresql/contrib
Tom Lane 2bfbad9c42 Remove useless dependencies in daitch_mokotoff_header.pl.
Actually, the correct fix for this is "we don't need this at all",
because this program isn't dealing in any non-ASCII data.  The
dependency on Data::Dumper seems to be a leftover too.

Discussion: https://postgr.es/m/3287943.1680922997@sss.pgh.pa.us
2023-04-07 23:23:25 -04:00
..
adminpack Use "data directory" not "current directory" in error messages. 2023-03-16 12:04:08 -04:00
amcheck Refactor background psql TAP functions 2023-04-07 22:14:20 +02:00
auth_delay Fix copy-pasto in contrib/auth_delay/meson.build variable name. 2023-04-02 09:31:10 -07:00
auto_explain
basebackup_to_shell
basic_archive Redesign archive modules 2023-02-17 14:26:42 +09:00
bloom Convert many uses of ReadBuffer[Extended](P_NEW) to ExtendBufferedRel() 2023-04-05 18:57:29 -07:00
bool_plperl
btree_gin
btree_gist Remove useless casts to (void *) in arguments of some system functions 2023-02-07 06:57:59 +01:00
citext Use ICU by default at initdb time. 2023-03-09 10:52:41 -08:00
cube Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
dblink Add support for Kerberos credential delegation 2023-04-07 21:58:04 -04:00
dict_int
dict_xsyn
earthdistance
file_fdw Improve several permission-related error messages. 2023-03-17 10:33:09 +01:00
fuzzystrmatch Remove useless dependencies in daitch_mokotoff_header.pl. 2023-04-07 23:23:25 -04:00
hstore Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
hstore_plperl
hstore_plpython
intagg
intarray Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
isn Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
jsonb_plperl
jsonb_plpython
lo
ltree Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
ltree_plpython
oid2name Mark options as deprecated in usage output 2023-03-02 14:36:37 +01:00
old_snapshot
pageinspect pageinspect: Fix crash with gist_page_items() 2023-03-02 14:03:02 +09:00
passwordcheck
pg_buffercache Add pg_buffercache_usage_counts() to contrib/pg_buffercache. 2023-04-07 14:25:53 -04:00
pg_freespacemap
pg_prewarm
pg_stat_statements Fix row tracking in pg_stat_statements with extended query protocol 2023-04-06 09:29:03 +09:00
pg_surgery Remove useless casts to (void *) in arguments of some system functions 2023-02-07 06:57:59 +01:00
pg_trgm Fix misbehavior in contrib/pg_trgm with an unsatisfiable regex. 2023-03-11 12:15:41 -05:00
pg_visibility
pg_walinspect Add show_data option to pg_get_wal_block_info. 2023-03-31 14:02:52 -07:00
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw Add support for Kerberos credential delegation 2023-04-07 21:58:04 -04:00
seg Rework pg_input_error_message(), now renamed pg_input_error_info() 2023-02-28 08:04:13 +09:00
sepgsql Adjust contrib/sepgsql regression test expected outputs. 2023-04-07 18:17:22 -04:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Improve several permission-related error messages. 2023-03-17 10:33:09 +01:00
tsm_system_rows
tsm_system_time
unaccent Fix t_isspace(), etc., when datlocprovider=i and datctype=C. 2023-03-17 12:08:46 -07:00
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile
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.