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

Fix typos and inconsistencies in code and comments

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

Update copyright for 2026

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

Update copyright for 2026

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

Allow Boolean reloptions to have ternary values

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

Update copyright for 2026

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

Update copyright for 2026

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

Fix gistkillitems for GiST root page

месяц назад
injection_points

Fix propagation of indimmediate flag in index_create_copy()

14 дней назад
ldap_password_func

Update copyright for 2026

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

Fix mismatched deallocation functions

месяц назад
nbtree

Fix autovacuum-induced flakiness in backwards scan test.

13 дней назад
oauth_validator

Fix for loop variables used with lengthof

месяц назад
plsample

plsample: Use TextDatumGetCString() for text-to-CString conversion

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

Mark commented out code as unused

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

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

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

Fix for loop variables

месяц назад
test_autovacuum

Fix unstable log verification in test_autovacuum.

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

Fix for loop variables

месяц назад
test_bitmapset

Tidy up datatype usage in test_random_offset_operations()

месяц назад
test_bloomfilter

test_bloomfilter: Fix error message.

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

Don't skip invalid databases when enabling data checksums

8 дней назад
test_cloexec

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

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

Update copyright for 2026

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

Enable test_cplusplusext with MSVC

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

Update copyright for 2026

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

Rework pgstat_write_statsfile() in combination with to_serialized_data

месяц назад
test_custom_types

test_custom_types: Test module with fancy custom data types

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

Support more object types within CREATE SCHEMA.

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

Fix size underestimation of DSA pagemap for odd-sized segments

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

Update copyright for 2026

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

Fix for loop variables used with lengthof

месяц назад
test_extensions

Message style fixes

21 день назад
test_ginpostinglist

Fix copy-paste error in test_ginpostinglist

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

Update copyright for 2026

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

Fix for loop variables used with lengthof

месяц назад
test_json_parser

Use fallthrough attribute instead of comment

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

Update copyright for 2026

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

Improve test_lwlock_tranches

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

Improve log_statement_max_length truncation reporting

месяц назад
test_oat_hooks

Update copyright for 2026

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

Update copyright for 2026

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

Update copyright for 2026

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

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

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

Fix for loop variables

месяц назад
test_radixtree

Fix for loop variables used with lengthof

месяц назад
test_rbtree

Update copyright for 2026

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

Reduce header inclusions via execnodes.h

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

Update copyright for 2026

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

Update copyright for 2026

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

test_saslprep: Fix issue with copy of input bytea

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

Remove unnecessary volatile qualifiers.

месяц назад
test_shmem

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

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

Convert SLRUs to use the new shmem allocation functions

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

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

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

Update copyright for 2026

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

Disallow CR and LF in database, role, and tablespace names

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

Improve more stability of worker_spi termination test

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

Clarify wraparound warning percentage messages

6 дней назад
Makefile

Run nbtree test module tests under autoconf builds

22 дня назад
README

Add an enforcement mechanism for global object names in regression tests.

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

Allow autovacuum to use parallel vacuum workers.

4 месяца назад
README
Test extensions and libraries
=============================
 
src/test/modules contains PostgreSQL extensions that are primarily or entirely
intended for testing PostgreSQL and/or to serve as example code. The extensions
here aren't intended to be installed in a production server and aren't suitable
for "real work".
 
Furthermore, while you can do "make install" and "make installcheck" in
this directory or its children, it is NOT ADVISABLE to do so with a server
containing valuable data. Some of these tests may have undesirable
side-effects on roles or other global objects within the tested server.
"make installcheck-world" at the top level does not recurse into this
directory.
 
Most extensions have their own pg_regress tests or isolationtester specs. Some
are also used by tests elsewhere in the tree.
 
If you're adding new hooks or other functionality exposed as C-level API this
is where to add the tests for it.