postgresql/contrib
Michael Paquier 62aa2bb293 Remove use of [U]INT64_FORMAT in some translatable strings
%lld with (long long), or %llu with (unsigned long long) are more
adapted.  This is similar to 3286065.

Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20210421.200000.1462448394029407895.horikyota.ntt@gmail.com
2021-04-23 13:25:49 +09:00
..
adminpack Rename Default Roles to Predefined Roles 2021-04-01 15:32:06 -04:00
amcheck Fix typos and grammar in comments and docs 2021-04-19 11:32:30 +09:00
auth_delay
auto_explain Fix ancient memory leak in contrib/auto_explain. 2021-02-02 13:49:08 -05:00
bloom Remove redundant memset(0) calls for page init of some index AMs 2021-04-07 14:35:26 +09:00
bool_plperl Fix broken ruleutils support for function TRANSFORM clauses. 2021-01-25 13:03:43 -05:00
btree_gin
btree_gist Revert "Add sortsupport for gist_btree opclasses, for faster index builds." 2021-04-07 14:33:21 +03:00
citext
cube Add binary I/O capability for cube datatype. 2021-03-06 12:04:05 -05:00
dblink adjust dblink regression expected output for commit 5da9868ed9 2021-03-30 19:46:31 -04:00
dict_int
dict_xsyn
earthdistance
file_fdw Rename Default Roles to Predefined Roles 2021-04-01 15:32:06 -04:00
fuzzystrmatch
hstore Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
hstore_plperl
hstore_plpython Fix broken ruleutils support for function TRANSFORM clauses. 2021-01-25 13:03:43 -05:00
intagg
intarray Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name Avoid redundantly prefixing PQerrorMessage for a connection failure. 2021-01-22 16:52:31 -05:00
old_snapshot
pageinspect Use full 64-bit XIDs in deleted nbtree pages. 2021-02-24 18:41:34 -08:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Remove use of [U]INT64_FORMAT in some translatable strings 2021-04-23 13:25:49 +09:00
pg_stat_statements Revert "psql: Show all query results by default" 2021-04-15 19:42:55 +02:00
pg_surgery
pg_trgm Fix invalid array access in trgm_regexp.c. 2021-02-21 19:46:46 -05:00
pg_visibility
pgcrypto pgcrypto: Check for error return of px_cipher_decrypt() 2021-03-23 11:48:37 +01:00
pgrowlocks Rename Default Roles to Predefined Roles 2021-04-01 15:32:06 -04:00
pgstattuple Use full 64-bit XIDs in deleted nbtree pages. 2021-02-24 18:41:34 -08:00
postgres_fdw Minor code cleanup in asynchronous execution support. 2021-04-23 12:00:00 +09:00
seg Remove deprecated containment operators for contrib types. 2021-03-05 10:45:41 -05:00
sepgsql Remove gratuitous uses of deprecated SELECT INTO 2021-01-28 14:28:41 +01:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix test case added by commit f5fc2f5b23. 2021-04-19 09:02:47 +05:30
tsm_system_rows
tsm_system_time
unaccent Update Unicode data to CLDR 39 2021-04-08 08:28:03 +02:00
uuid-ossp Add result size as argument of pg_cryptohash_final() for overflow checks 2021-02-15 10:18:34 +09:00
vacuumlo Avoid redundantly prefixing PQerrorMessage for a connection failure. 2021-01-22 16:52:31 -05:00
xml2
contrib-global.mk
Makefile Introduce --with-ssl={openssl} as a configure option 2021-02-01 19:19:44 +09: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.