postgresql/contrib
Peter Eisentraut 7e5f517799 Improve "user mapping not found" error message
Display the name of the foreign server for which the user mapping was
not found.

Author: Ian Lawrence Barwick <barwick@gmail.com>
Reviewed-by: Laurenz Albe <laurenz.albe@cybertec.at>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://www.postgresql.org/message-id/flat/CAB8KJ=jFzNaeyFtLcTZNOc6fd1+F93pGVLFa-wyt31wn7VNxqQ@mail.gmail.com
2023-11-30 05:34:28 +01:00
..
adminpack
amcheck amcheck: Distinguish interrupted page deletion from corruption. 2023-10-30 14:46:05 -07:00
auth_delay
auto_explain
basebackup_to_shell
basic_archive
bloom Reuse BrinDesc and BrinRevmap in brininsert 2023-11-25 20:27:28 +01:00
bool_plperl
btree_gin Support +/- infinity in the interval data type. 2023-11-14 10:58:49 +00:00
btree_gist Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
citext citext: Allow tests to pass in OpenSSL FIPS mode 2023-11-07 07:58:14 +01:00
cube Remove distprep 2023-11-06 15:18:04 +01:00
dblink dblink: Replace WAIT_EVENT_EXTENSION with custom wait events 2023-10-05 10:23:22 +09:00
dict_int
dict_xsyn
earthdistance
file_fdw Adjust file_fdw regression tests for acc95f29ef FREEZE commit 2023-11-13 14:44:39 -05:00
fuzzystrmatch Remove distprep 2023-11-06 15:18:04 +01:00
hstore Constify crc32_sz 2023-10-05 08:53:21 +02:00
hstore_plperl
hstore_plpython
intagg
intarray Fix another bug in parent page splitting during GiST index build. 2023-09-26 14:14:49 +03:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
pageinspect
passwordcheck Allow tests to pass in OpenSSL FIPS mode (rest) 2023-11-17 17:58:39 +01:00
pg_buffercache
pg_freespacemap
pg_prewarm Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
pg_stat_statements Track statement entry timestamp in contrib/pg_stat_statements 2023-11-27 02:52:17 +02:00
pg_surgery Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
pg_trgm
pg_visibility
pg_walinspect During online checkpoints, insert XLOG_CHECKPOINT_REDO at redo point. 2023-10-19 14:47:29 -04:00
pgcrypto pgcrypto: Allow tests to pass in OpenSSL FIPS mode 2023-11-17 14:55:51 +01:00
pgrowlocks Adjust the order of the prechecks in pgrowlocks() 2023-10-31 16:42:08 +13:00
pgstattuple Diagnose !indisvalid in more SQL functions. 2023-10-30 14:46:05 -07:00
postgres_fdw Improve "user mapping not found" error message 2023-11-30 05:34:28 +01:00
seg Remove distprep 2023-11-06 15:18:04 +01:00
sepgsql meson: Fix missing dependency from install-quiet to sepgsql.sql 2023-11-17 16:29:48 -08:00
spi meson: Install missing example files 2023-11-09 15:10:43 +01:00
sslinfo
start-scripts
tablefunc
tcn
test_decoding Add STREAM_START/STREAM_STOP for transactional messages during decoding. 2023-10-30 14:36:21 +05:30
tsm_system_rows
tsm_system_time
unaccent unaccent: Tweak value of PYTHON when building without Python support 2023-09-27 14:40:23 +09:00
uuid-ossp Allow tests to pass in OpenSSL FIPS mode (rest) 2023-11-17 17:58:39 +01:00
vacuumlo Add trailing commas to enum definitions 2023-10-26 09:20:54 +02:00
xml2
contrib-global.mk
Makefile
meson.build meson: Install missing example files 2023-11-09 15:10:43 +01: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.