postgresql/contrib
Robert Haas e243de03fb amcheck: Fix incorrect use of VARATT_IS_COMPRESSED.
The macro is being applied to a TOAST pointer, not a varlena header.
Therefore the use of VARATT_IS_COMPRESSED() is wrong. We can check
VARATT_EXTERNAL_IS_COMPRESSED(), but then we don't need the length
check that follows.

Report and fix by Kyotaro Horiguchi.

Discussion: http://postgr.es/m/20220517.162719.1671558681467343711.horikyota.ntt@gmail.com
2022-06-22 13:11:49 -04:00
..
adminpack Use has_privs_for_roles for predefined role checks 2022-03-28 15:10:04 -04:00
amcheck amcheck: Fix incorrect use of VARATT_IS_COMPRESSED. 2022-06-22 13:11:49 -04:00
auth_delay Disallow setting bogus GUCs within an extension's reserved namespace. 2022-02-21 14:10:43 -05:00
auto_explain Remove non-functional code for unloading loadable modules. 2022-05-11 15:30:30 -04:00
basebackup_to_shell Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basic_archive Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
bloom Under has_wal_read_bug, skip contrib/bloom/t/001_wal.pl. 2022-05-07 00:33:15 -07:00
bool_plperl
btree_gin
btree_gist Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
citext Fix typos and grammar in code and test comments 2022-05-11 15:38:55 +09:00
cube Indent C code in flex and bison files 2022-05-13 07:17:29 +02:00
dblink Remove extraneous blank lines before block-closing braces 2022-04-13 19:16:02 +02:00
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 Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
intagg
intarray Remove extraneous blank lines before block-closing braces 2022-04-13 19:16:02 +02:00
isn
jsonb_plperl
jsonb_plpython plpython: Code cleanup related to removal of Python 2 support. 2022-03-07 18:30:28 -08:00
lo
ltree Remove extraneous blank lines before block-closing braces 2022-04-13 19:16:02 +02:00
ltree_plpython plpython: Code cleanup related to removal of Python 2 support. 2022-03-07 18:30:28 -08:00
oid2name Improve frontend error logging style. 2022-04-08 14:55:14 -04:00
old_snapshot
pageinspect Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
passwordcheck Remove non-functional code for unloading loadable modules. 2022-05-11 15:30:30 -04:00
pg_buffercache
pg_freespacemap Avoid instabilities with the regression tests of pg_freespacemap 2022-03-29 13:52:49 +09:00
pg_prewarm Add a new shmem_request_hook hook. 2022-05-13 09:31:06 -04:00
pg_stat_statements Add a new shmem_request_hook hook. 2022-05-13 09:31:06 -04:00
pg_surgery Remove xloginsert.h from xlog.h 2022-01-30 12:25:24 -03:00
pg_trgm Disallow setting bogus GUCs within an extension's reserved namespace. 2022-02-21 14:10:43 -05:00
pg_visibility Remove xloginsert.h from xlog.h 2022-01-30 12:25:24 -03:00
pg_walinspect Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
pgcrypto Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
pgrowlocks Use has_privs_for_roles for predefined role checks 2022-03-28 15:10:04 -04:00
pgstattuple Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
postgres_fdw Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
seg Indent C code in flex and bison files 2022-05-13 07:17:29 +02:00
sepgsql Disallow setting bogus GUCs within an extension's reserved namespace. 2022-02-21 14:10:43 -05:00
spi Remove extraneous blank lines before block-closing braces 2022-04-13 19:16:02 +02:00
sslinfo
start-scripts
tablefunc Remove all traces of tuplestore_donestoring() in the C code 2022-02-17 09:52:02 +09:00
tcn
test_decoding Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04: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 Improve frontend error logging style. 2022-04-08 14:55:14 -04:00
xml2 Simplify SRFs using materialize mode in contrib/ modules 2022-03-08 10:12:22 +09:00
contrib-global.mk
Makefile Add contrib/pg_walinspect. 2022-04-08 00:26:44 -07: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.