postgresql/contrib
Michael Paquier 9fd9af97fb Update test output of sepgsql for ALTER TABLE COLUMN DROP
1df5875 has changed the way dependencies are dropped for this command
with inheritance trees, which impacts sepgsql.  This just updates the
regression test output to take care of the failures and adapt to the new
code.

Reported by buildfarm member rhinoceros.

Author: Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/20191013101331.GC1434@paquier.xyz
Backpatch-through: 12
2019-10-14 08:58:47 +09:00
..
adminpack
amcheck amcheck: Skip unlogged relations during recovery. 2019-08-12 15:21:30 -07:00
auth_delay
auto_explain Fix contrib/auto_explain to not cause problems in parallel workers. 2019-06-03 18:06:04 -04:00
bloom Fix failure with lock mode used for custom relation options 2019-09-25 10:08:26 +09:00
btree_gin
btree_gist Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
citext Fix typos in various places 2019-06-03 13:44:03 +09:00
cube
dblink Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
dict_int
dict_xsyn
earthdistance
file_fdw Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
fuzzystrmatch
hstore
hstore_plperl Clean up PL/Perl's handling of the _() macro. 2019-06-02 12:23:39 -04:00
hstore_plpython
intagg
intarray Fix intarray's GiST opclasses to not fail for empty arrays with <@. 2019-08-06 18:04:51 -04:00
isn
jsonb_plperl Fix handling of "undef" in contrib/jsonb_plperl. 2019-08-04 14:05:35 -04:00
jsonb_plpython Fix more typos and inconsistencies in the tree 2019-06-17 16:13:16 +09:00
lo
ltree Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
ltree_plpython
oid2name
pageinspect Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
passwordcheck Fix handling of previous password hooks in passwordcheck 2019-08-01 09:37:48 +09:00
pg_buffercache
pg_freespacemap
pg_prewarm Fix more typos and inconsistencies in the tree 2019-06-17 16:13:16 +09:00
pg_standby
pg_stat_statements Replace an occurrence of slave with standby 2019-06-19 14:38:23 +02:00
pg_trgm Fix many typos and inconsistencies 2019-07-01 10:00:23 +09:00
pg_visibility Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
pgcrypto Fix many typos and inconsistencies 2019-07-01 10:00:23 +09:00
pgrowlocks
pgstattuple Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
postgres_fdw pgindent run prior to branching v12. 2019-07-01 12:37:52 -04:00
seg
sepgsql Update test output of sepgsql for ALTER TABLE COLUMN DROP 2019-10-14 08:58:47 +09:00
spi
sslinfo
start-scripts
tablefunc Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
tcn
test_decoding Message style fixes 2019-09-23 13:37:33 +02:00
tsm_system_rows Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
tsm_system_time Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
unaccent
uuid-ossp
vacuumlo Fix copy-pasto in freeing memory on error in vacuumlo. 2019-06-07 12:42:27 +03:00
xml2 Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
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.