/
githubmirror
/
postgres
ОбзорДокументацияВойти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
postgres/
contrib/
..
amcheck

Empty search_path in amcheck.

14 часов назад
auth_delay

Update copyright for 2026

7 месяцев назад
auto_explain

Pre-beta mechanical code beautification, step 2: run pgperltidy.

3 месяца назад
basebackup_to_shell

Update copyright for 2026

7 месяцев назад
basic_archive

Clean up read() return type

месяц назад
bloom

Discount the metapage when estimating number of index pages visited.

5 месяцев назад
bool_plperl

Update copyright for 2026

7 месяцев назад
btree_gin

Use fallthrough attribute instead of comment

6 месяцев назад
btree_gist

Remove btree_gist's useless logic for encoding-aware truncation.

месяц назад
citext

Update copyright for 2026

7 месяцев назад
cube

Pre-beta mechanical code beautification, step 1: run pgindent.

3 месяца назад
dblink

Message style fixes

21 день назад
dict_int

Update copyright for 2026

7 месяцев назад
dict_xsyn

Simplify dxsyn_lexize().

месяц назад
earthdistance

Update copyright for 2026

7 месяцев назад
file_fdw

file_fdw: Add regression test for file_fdw with ON_ERROR='set_null'

5 месяцев назад
fuzzystrmatch

Avoid overflow in Levenshtein distance calculations.

14 часов назад
hstore

Add an enable_groupagg GUC parameter

месяц назад
hstore_plperl

Harden PL/Perl code against "tied" Perl arrays and hashes.

14 часов назад
hstore_plpython

plpython: Fix NULL pointer dereferences for broken sequence and mapping objects

месяц назад
intagg

Update copyright for 2026

7 месяцев назад
intarray

Fix missed ReleaseVariableStats() in intarray's _int_matchsel().

3 месяца назад
isn

Pre-beta mechanical code beautification, step 1: run pgindent.

3 месяца назад
jsonb_plperl

jsonb_plperl, jsonb_plpython: Fix unguarded recursion and loops.

2 месяца назад
jsonb_plpython

plpython: Fix NULL pointer dereferences for broken sequence and mapping objects

месяц назад
lo

Update copyright for 2026

7 месяцев назад
ltree

Add an enable_groupagg GUC parameter

месяц назад
ltree_plpython

Change StaticAssertVariableIsOfType to be a declaration

6 месяцев назад
oid2name

Fix mismatched deallocation functions

месяц назад
pageinspect

Fix for loop variables

месяц назад
passwordcheck

Message style fixes

21 день назад
pg_buffercache

pg_buffercache: restore rowtype verification in pg_buffercache_pages()

2 месяца назад
pg_freespacemap

Update copyright for 2026

7 месяцев назад
pg_logicalinspect

Fix for loop variables

месяц назад
pg_overexplain

Tighten nullingrels checks for outer joins

месяц назад
pg_plan_advice

Fix parsing of underscores in pg_plan_advice occurrence numbers

22 дня назад
pg_prewarm

Fix out-of-bounds access in autoprewarm worker

месяц назад
pg_stash_advice

Message style fixes

21 день назад
pg_stat_statements

pg_stat_statements: Fix buffer overflow with query normalization

14 часов назад
pg_surgery

pg_surgery: Fix infinite loop on large TID arrays

7 дней назад
pg_trgm

Fix pg_trgm's picksplit function with all-true datums

14 часов назад
pg_visibility

Revert "Allow logical replication snapshots to be database-specific"

3 месяца назад
pg_walinspect

Fix more Datum conversion inconsistencies

месяц назад
pgcrypto

pgcrypto: Add option to revert to prior decryption behavior

14 часов назад
pgrowlocks

Thread flags through begin-scan APIs

4 месяца назад
pgstattuple

Fix more Datum conversion inconsistencies

месяц назад
postgres_fdw

Drain pending asynchronous requests during ExecReScanAppend.

4 дня назад
seg

Improve the names generated for indexes on expressions.

месяц назад
sepgsql

Harmonize function parameter names for Postgres 19.

4 месяца назад
spi

Remove the refint extension.

месяц назад
sslinfo

Fix compilation with OpenSSL 4

2 месяца назад
start-scripts

Remove gratuitous references to postmaster program

4 года назад
tablefunc

Avoid including vacuum.h in tableam.h and heapam.h.

4 месяца назад
tcn

Update copyright for 2026

7 месяцев назад
test_decoding

Add an output_plugin_libraries GUC to bless trusted output plugins

14 часов назад
tsm_system_rows

Update copyright for 2026

7 месяцев назад
tsm_system_time

Reduce header inclusions via execnodes.h

5 месяцев назад
unaccent

Update Unicode data to Unicode 17.0.0

5 месяцев назад
uuid-ossp

Fix accidentally cast away qualifiers

7 месяцев назад
vacuumlo

Update copyright for 2026

7 месяцев назад
xml2

xml2: Fix crash with namespace nodes in xpath_nodeset()

2 месяца назад
Makefile

Add pg_stash_advice contrib module.

4 месяца назад
README

Rename 'gmake' to 'make' in docs and recommended commands

12 лет назад
contrib-global.mk

Respect TEMP_CONFIG when pg_regress_check and friends are called

10 лет назад
meson.build

Add pg_stash_advice contrib module.

4 месяца назад
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.