postgresql/contrib
Andrew Dunstan 3b5e03dca2 Provide a FORCE NULL option to COPY in CSV mode.
This forces an input field containing the quoted null string to be
returned as a NULL. Without this option, only unquoted null strings
behave this way. This helps where some CSV producers insist on quoting
every field, whether or not it is needed. The option takes a list of
fields, and only applies to those columns. There is an equivalent
column-level option added to file_fdw.

Ian Barwick, with some tweaking by Andrew Dunstan, reviewed by Payal
Singh.
2014-03-04 17:31:59 -05:00
..
adminpack Update copyright for 2014 2014-01-07 16:05:30 -05:00
auth_delay
auto_explain auto_explain: Add logging of trigger execution 2014-03-04 15:31:18 -03:00
btree_gin
btree_gist
chkpass Prevent potential overruns of fixed-size buffers. 2014-02-17 11:20:21 -05:00
citext Remove dependency on database encoding in citext regression test. 2014-02-27 14:58:47 -05:00
cube
dblink Update copyright for 2014 2014-01-07 16:05:30 -05:00
dict_int Update copyright for 2014 2014-01-07 16:05:30 -05:00
dict_xsyn Update copyright for 2014 2014-01-07 16:05:30 -05:00
dummy_seclabel Update copyright for 2014 2014-01-07 16:05:30 -05:00
earthdistance
file_fdw Provide a FORCE NULL option to COPY in CSV mode. 2014-03-04 17:31:59 -05:00
fuzzystrmatch Update copyright for 2014 2014-01-07 16:05:30 -05:00
hstore Avoid integer overflow in hstore_to_json(). 2014-02-21 15:47:22 +02:00
intagg
intarray Predict integer overflow to avoid buffer overruns. 2014-02-17 09:33:31 -05:00
isn Fix calculation of ISMN check digit. 2014-01-13 15:43:29 +02:00
lo
ltree Predict integer overflow to avoid buffer overruns. 2014-02-17 09:33:31 -05:00
oid2name Centralize getopt-related declarations in a new header file pg_getopt.h. 2014-02-15 14:31:30 -05:00
pageinspect pageinspect: Use new pg_lsn datatype. 2014-03-03 07:15:04 -05:00
passwordcheck Update copyright for 2014 2014-01-07 16:05:30 -05:00
pg_archivecleanup Centralize getopt-related declarations in a new header file pg_getopt.h. 2014-02-15 14:31:30 -05:00
pg_buffercache Relax the requirement that all lwlocks be stored in a single array. 2014-01-27 11:07:44 -05:00
pg_freespacemap
pg_prewarm Update copyright for 2014 2014-01-07 16:05:30 -05:00
pg_standby Prevent potential overruns of fixed-size buffers. 2014-02-17 11:20:21 -05:00
pg_stat_statements Prefer pg_any_to_server/pg_server_to_any over pg_do_encoding_conversion. 2014-02-23 16:59:05 -05:00
pg_test_fsync pg_test_fsync: add C comment about direct I/O and write size failure 2014-02-12 15:38:29 -05:00
pg_test_timing
pg_trgm Fix possible buffer overrun in contrib/pg_trgm. 2014-01-13 13:07:10 -05:00
pg_upgrade Centralize getopt-related declarations in a new header file pg_getopt.h. 2014-02-15 14:31:30 -05:00
pg_upgrade_support Update copyright for 2014 2014-01-07 16:05:30 -05:00
pg_xlogdump Update copyright for 2014 2014-01-07 16:05:30 -05:00
pgbench pgbench: Fix help message 2014-02-27 21:52:21 -05:00
pgcrypto Add gen_random_uuid() to contrib/pgcrypto. 2014-01-17 16:52:06 -05:00
pgrowlocks
pgstattuple Compress GIN posting lists, for smaller index size. 2014-01-22 19:20:58 +02:00
postgres_fdw Improve connection-failure error handling in contrib/postgres_fdw. 2014-02-03 21:30:20 -05:00
seg
sepgsql Update copyright for 2014 2014-01-07 16:05:30 -05:00
spi
sslinfo Prefer pg_any_to_server/pg_server_to_any over pg_do_encoding_conversion. 2014-02-23 16:59:05 -05:00
start-scripts
tablefunc Update copyright for 2014 2014-01-07 16:05:30 -05:00
tcn Update copyright for 2014 2014-01-07 16:05:30 -05:00
test_decoding Introduce logical decoding. 2014-03-03 16:32:18 -05:00
test_parser Update copyright for 2014 2014-01-07 16:05:30 -05:00
test_shm_mq Fix whitespace 2014-01-15 21:14:28 -05:00
tsearch2 Update copyright for 2014 2014-01-07 16:05:30 -05:00
unaccent Update copyright for 2014 2014-01-07 16:05:30 -05:00
uuid-ossp Update copyright for 2014 2014-01-07 16:05:30 -05:00
vacuumlo Centralize getopt-related declarations in a new header file pg_getopt.h. 2014-02-15 14:31:30 -05:00
worker_spi Fix some more bugs in signal handlers and process shutdown logic. 2014-02-01 16:21:23 -05:00
xml2
contrib-global.mk
Makefile Introduce logical decoding. 2014-03-03 16:32:18 -05:00
README Rename 'gmake' to 'make' in docs and recommended commands 2014-02-12 17:29:19 -05:00

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.