PolarDBforPostgreSQL/contrib
dengwendi f53e7f8311 INIT 2023-11-15 15:09:40 +08:00
..
adminpack INIT 2023-11-15 15:09:40 +08:00
amcheck INIT 2023-11-15 15:09:40 +08:00
auth_delay INIT 2023-11-15 15:09:40 +08:00
auto_explain INIT 2023-11-15 15:09:40 +08:00
bloom INIT 2023-11-15 15:09:40 +08:00
btree_gin INIT 2023-11-15 15:09:40 +08:00
btree_gist INIT 2023-11-15 15:09:40 +08:00
citext INIT 2023-11-15 15:09:40 +08:00
cube INIT 2023-11-15 15:09:40 +08:00
dblink INIT 2023-11-15 15:09:40 +08:00
dict_int INIT 2023-11-15 15:09:40 +08:00
dict_xsyn INIT 2023-11-15 15:09:40 +08:00
earthdistance INIT 2023-11-15 15:09:40 +08:00
faultinjector INIT 2023-11-15 15:09:40 +08:00
file_fdw INIT 2023-11-15 15:09:40 +08:00
fuzzystrmatch INIT 2023-11-15 15:09:40 +08:00
hstore INIT 2023-11-15 15:09:40 +08:00
hstore_plperl INIT 2023-11-15 15:09:40 +08:00
hstore_plpython INIT 2023-11-15 15:09:40 +08:00
intagg INIT 2023-11-15 15:09:40 +08:00
intarray INIT 2023-11-15 15:09:40 +08:00
isn INIT 2023-11-15 15:09:40 +08:00
jsonb_plperl INIT 2023-11-15 15:09:40 +08:00
jsonb_plpython INIT 2023-11-15 15:09:40 +08:00
lo INIT 2023-11-15 15:09:40 +08:00
ltree INIT 2023-11-15 15:09:40 +08:00
ltree_plpython INIT 2023-11-15 15:09:40 +08:00
oid2name INIT 2023-11-15 15:09:40 +08:00
pageinspect INIT 2023-11-15 15:09:40 +08:00
passwordcheck INIT 2023-11-15 15:09:40 +08:00
pg_buffercache INIT 2023-11-15 15:09:40 +08:00
pg_freespacemap INIT 2023-11-15 15:09:40 +08:00
pg_prewarm INIT 2023-11-15 15:09:40 +08:00
pg_standby INIT 2023-11-15 15:09:40 +08:00
pg_stat_statements INIT 2023-11-15 15:09:40 +08:00
pg_trgm INIT 2023-11-15 15:09:40 +08:00
pg_visibility INIT 2023-11-15 15:09:40 +08:00
pgcrypto INIT 2023-11-15 15:09:40 +08:00
pgrowlocks INIT 2023-11-15 15:09:40 +08:00
pgstattuple INIT 2023-11-15 15:09:40 +08:00
postgres_fdw INIT 2023-11-15 15:09:40 +08:00
seg INIT 2023-11-15 15:09:40 +08:00
sepgsql INIT 2023-11-15 15:09:40 +08:00
spi INIT 2023-11-15 15:09:40 +08:00
sslinfo INIT 2023-11-15 15:09:40 +08:00
start-scripts INIT 2023-11-15 15:09:40 +08:00
tablefunc INIT 2023-11-15 15:09:40 +08:00
tcn INIT 2023-11-15 15:09:40 +08:00
test_decoding INIT 2023-11-15 15:09:40 +08:00
tsm_system_rows INIT 2023-11-15 15:09:40 +08:00
tsm_system_time INIT 2023-11-15 15:09:40 +08:00
unaccent INIT 2023-11-15 15:09:40 +08:00
uuid-ossp INIT 2023-11-15 15:09:40 +08:00
vacuumlo INIT 2023-11-15 15:09:40 +08:00
xml2 INIT 2023-11-15 15:09:40 +08:00
Makefile INIT 2023-11-15 15:09:40 +08:00
README INIT 2023-11-15 15:09:40 +08:00
contrib-global.mk INIT 2023-11-15 15:09:40 +08: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.