postgresql/contrib
Michael Paquier 8548ddc61b Fix inconsistencies and typos in the tree, take 9
This addresses more issues with code comments, variable names and
unreferenced variables.

Author: Alexander Lakhin
Discussion: https://postgr.es/m/7ab243e0-116d-3e44-d120-76b3df7abefd@gmail.com
2019-08-05 12:14:58 +09:00
..
adminpack
amcheck Don't rely on estimates for amcheck Bloom filters. 2019-07-20 11:11:55 -07:00
auth_delay
auto_explain
bloom Fix many typos and inconsistencies 2019-07-01 10:00:23 +09:00
btree_gin
btree_gist
citext
cube Fix inconsistencies and typos in the tree 2019-07-16 13:23:53 +09:00
dblink
dict_int
dict_xsyn
earthdistance
file_fdw Represent Lists as expansible arrays, not chains of cons-cells. 2019-07-15 13:41:58 -04:00
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Fix inconsistencies and typos in the tree 2019-07-16 13:23:53 +09:00
isn
jsonb_plperl Fix handling of "undef" in contrib/jsonb_plperl. 2019-08-04 14:05:34 -04:00
jsonb_plpython
lo
ltree Fix inconsistencies and typos in the tree 2019-07-16 13:23:53 +09:00
ltree_plpython
oid2name
pageinspect
passwordcheck Fix handling of previous password hooks in passwordcheck 2019-08-01 09:37:28 +09:00
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
pg_stat_statements pg_stat_statements: add missing check for pgss_enabled(). 2019-07-19 13:38:55 -07:00
pg_trgm Represent Lists as expansible arrays, not chains of cons-cells. 2019-07-15 13:41:58 -04:00
pg_visibility
pgcrypto Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
pgrowlocks
pgstattuple Fix inconsistencies and typos in the tree 2019-07-16 13:23:53 +09:00
postgres_fdw Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
seg
sepgsql Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix inconsistencies and typos in the tree, take 9 2019-08-05 12:14:58 +09:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile
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.