postgresql/contrib
Andres Freund 1a7a43672b Don't use !! but != 0/NULL to force boolean evaluation.
I introduced several uses of !! to force bit arithmetic to be boolean,
but per discussion the project prefers != 0/NULL.

Discussion: CA+TgmoZP5KakLGP6B4vUjgMBUW0woq_dJYi0paOz-My0Hwt_vQ@mail.gmail.com
2016-03-27 18:10:19 +02:00
..
adminpack
auth_delay
auto_explain Rename auto_explain.sample_ratio to sample_rate 2016-03-13 13:18:03 +01:00
btree_gin
btree_gist
chkpass
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
file_fdw Allow callers of create_foreignscan_path to specify nondefault PathTarget. 2016-03-14 17:31:28 -04:00
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray
isn
lo
ltree ltree: Zero padding bytes when allocating memory for externally visible data. 2016-03-08 14:59:29 -08:00
ltree_plpython
oid2name
pageinspect
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Widen query numbers-of-tuples-processed counters to uint64. 2016-03-12 16:05:29 -05:00
pg_trgm Various minor corrections of and improvements to comments. 2016-03-18 09:38:59 -04:00
pg_visibility Add pg_visibility contrib module. 2016-03-08 08:42:01 -05:00
pgcrypto Fix typos. 2016-03-15 18:06:11 -04:00
pgrowlocks
pgstattuple
postgres_fdw postgres_fdw: Fix crash when pushing down multiple joins. 2016-03-23 12:28:01 -04:00
seg
sepgsql Don't use !! but != 0/NULL to force boolean evaluation. 2016-03-27 18:10:19 +02:00
spi Widen query numbers-of-tuples-processed counters to uint64. 2016-03-12 16:05:29 -05:00
sslinfo
start-scripts
tablefunc Widen query numbers-of-tuples-processed counters to uint64. 2016-03-12 16:05:29 -05:00
tcn
test_decoding Fix phony .PHONY. 2016-03-19 17:19:37 -04:00
tsearch2
tsm_system_rows
tsm_system_time
unaccent fix typo in comment 2016-03-16 17:18:14 +03:00
uuid-ossp
vacuumlo
xml2 Widen query numbers-of-tuples-processed counters to uint64. 2016-03-12 16:05:29 -05:00
contrib-global.mk
Makefile Add pg_visibility contrib module. 2016-03-08 08:42:01 -05: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.