postgresql/contrib
Robert Haas 0d9937d118 Fix typos in comments and in one isolation test.
Dagfinn Ilmari Mannsåker, reviewed by Shubham Khanna. Some subtractions
by me.

Discussion: http://postgr.es/m/87le9fmi01.fsf@wibble.ilmari.org
2024-01-02 12:05:41 -05:00
..
adminpack Use "data directory" not "current directory" in error messages. 2023-03-16 12:04:08 -04:00
amcheck Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
auth_delay Fix copy-pasto in contrib/auth_delay/meson.build variable name. 2023-04-02 09:31:10 -07:00
auto_explain Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
basebackup_to_shell Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
basic_archive basic_archive: Fix comments related to NO_INSTALLCHECK 2023-12-20 08:39:54 +09:00
bloom Fix typos in comments and in one isolation test. 2024-01-02 12:05:41 -05:00
bool_plperl
btree_gin Support +/- infinity in the interval data type. 2023-11-14 10:58:49 +00:00
btree_gist Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
citext citext: Allow tests to pass in OpenSSL FIPS mode 2023-11-07 07:58:14 +01:00
cube Remove distprep 2023-11-06 15:18:04 +01:00
dblink Remove redundant setting of hashkey after insertion 2023-11-30 15:25:57 +07:00
dict_int
dict_xsyn
earthdistance Doc: improve commentary about providing our own definitions of M_PI. 2023-01-08 16:25:33 -05:00
file_fdw Adjust file_fdw regression tests for acc95f29ef FREEZE commit 2023-11-13 14:44:39 -05:00
fuzzystrmatch Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
hstore Constify crc32_sz 2023-10-05 08:53:21 +02:00
hstore_plperl
hstore_plpython In hstore_plpython, avoid crashing when return value isn't a mapping. 2023-04-27 11:55:06 -04:00
intagg
intarray Make all Perl warnings fatal 2023-12-29 18:20:00 +01: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 Pre-beta mechanical code beautification. 2023-05-19 17:24:48 -04:00
ltree_plpython
oid2name Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
pageinspect pageinspect: Fix failure with hash_bitmap_info() for partitioned indexes 2023-12-19 18:19:05 +09:00
passwordcheck Allow tests to pass in OpenSSL FIPS mode (rest) 2023-11-17 17:58:39 +01:00
pg_buffercache Add pg_buffercache_usage_counts() to contrib/pg_buffercache. 2023-04-07 14:25:53 -04:00
pg_freespacemap
pg_prewarm Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
pg_stat_statements Revert "pg_stat_statements: Add coverage for entry_dealloc()" 2023-12-31 15:30:57 +01:00
pg_surgery Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
pg_trgm Update contrib/trgm_regexp's memory management. 2023-04-08 22:09:17 +12:00
pg_visibility
pg_walinspect During online checkpoints, insert XLOG_CHECKPOINT_REDO at redo point. 2023-10-19 14:47:29 -04:00
pgcrypto Fix typos in comments and in one isolation test. 2024-01-02 12:05:41 -05:00
pgrowlocks Adjust the order of the prechecks in pgrowlocks() 2023-10-31 16:42:08 +13:00
pgstattuple pgstattuple: Fix failure with pgstathashindex() for partitioned indexes 2023-12-19 15:20:39 +09:00
postgres_fdw Fix typos in comments and in one isolation test. 2024-01-02 12:05:41 -05:00
seg Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
sepgsql meson: Fix missing dependency from install-quiet to sepgsql.sql 2023-11-17 16:29:48 -08:00
spi meson: Install missing example files 2023-11-09 15:10:43 +01:00
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 2023-07-20 17:18:12 +02:00
start-scripts Remove gratuitous references to postmaster program 2023-01-26 10:48:32 +01:00
tablefunc
tcn
test_decoding Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
tsm_system_rows
tsm_system_time
unaccent unaccent: Tweak value of PYTHON when building without Python support 2023-09-27 14:40:23 +09:00
uuid-ossp Allow tests to pass in OpenSSL FIPS mode (rest) 2023-11-17 17:58:39 +01:00
vacuumlo Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
xml2
contrib-global.mk
Makefile Remove the "snapshot too old" feature. 2023-09-05 19:53:43 +12:00
meson.build meson: Install missing example files 2023-11-09 15:10:43 +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.