postgresql/contrib
Tomas Vondra 2c7ea57e56 Revert "Logical decoding of sequences"
This reverts a sequence of commits, implementing features related to
logical decoding and replication of sequences:

 - 0da92dc530
 - 80901b3291
 - b779d7d8fd
 - d5ed9da41d
 - a180c2b34d
 - 75b1521dae
 - 2d2232933b
 - 002c9dd97a
 - 05843b1aa4

The implementation has issues, mostly due to combining transactional and
non-transactional behavior of sequences. It's not clear how this could
be fixed, but it'll require reworking significant part of the patch.

Discussion: https://postgr.es/m/95345a19-d508-63d1-860a-f5c2f41e8d40@enterprisedb.com
2022-04-07 20:06:36 +02:00
..
adminpack Use has_privs_for_roles for predefined role checks 2022-03-28 15:10:04 -04:00
amcheck Add macros in hash and btree AMs to get the special area of their pages 2022-04-01 13:24:50 +09:00
auth_delay
auto_explain
basebackup_to_shell Use has_privs_for_roles for predefined role checks: round 2 2022-04-02 13:24:38 -04:00
basic_archive
bloom Add new block-by-block strategy for CREATE DATABASE. 2022-03-29 11:48:36 -04:00
bool_plperl
btree_gin
btree_gist
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
file_fdw Add header matching mode to COPY FROM 2022-03-30 09:02:31 +02:00
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray
isn
jsonb_plperl
jsonb_plpython
lo
ltree Fix default signature length for gist_ltree_ops 2022-03-16 11:41:18 +03:00
ltree_plpython
oid2name
old_snapshot
pageinspect pageinspect: Use better macros to get special page area for GIN and GiST 2022-04-02 11:27:20 +09:00
passwordcheck
pg_buffercache
pg_freespacemap Avoid instabilities with the regression tests of pg_freespacemap 2022-03-29 13:52:49 +09:00
pg_prewarm
pg_stat_statements pgstat: remove stats_temp_directory. 2022-04-06 21:29:46 -07:00
pg_surgery
pg_trgm
pg_visibility
pgcrypto pgcrypto: Remove internal padding implementation 2022-03-22 08:58:44 +01:00
pgrowlocks Use has_privs_for_roles for predefined role checks 2022-03-28 15:10:04 -04:00
pgstattuple Add macros in hash and btree AMs to get the special area of their pages 2022-04-01 13:24:50 +09:00
postgres_fdw Allow asynchronous execution in more cases. 2022-04-06 15:45:00 +09:00
seg
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Revert "Logical decoding of sequences" 2022-04-07 20:06:36 +02:00
tsm_system_rows
tsm_system_time
unaccent Make update-unicode target work in vpath builds 2022-03-25 09:47:50 +01:00
uuid-ossp
vacuumlo
xml2
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.