You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/test/modules
Michael Paquier 451ca5c1e6 Fix incorrect error message in libpq_pipeline 3 years ago
..
brin Fix handling of empty ranges and NULLs in BRIN 3 years ago
commit_ts Initial pgindent and pgperltidy run for v14. 5 years ago
delay_execution Improve display of query results in isolation tests. 5 years ago
dummy_index_am
dummy_seclabel
libpq_pipeline Fix incorrect error message in libpq_pipeline 3 years ago
plsample
snapshot_too_old Reduce test runtime of src/test/modules/snapshot_too_old. 3 years ago
spgist_name_ops Prevent infinite insertion loops in spgdoinsert(). 5 years ago
ssl_passphrase_callback Add a copyright notice to perl files lacking one. 5 years ago
test_bloomfilter
test_ddl_deparse Fix DDL deparse of CREATE OPERATOR CLASS 4 years ago
test_extensions Stabilize output of new regression test. 3 years ago
test_ginpostinglist
test_integerset
test_misc Add a copyright notice to perl files lacking one. 5 years ago
test_parser
test_pg_dump Add a copyright notice to perl files lacking one. 5 years ago
test_predtest
test_rbtree
test_regex Fix regexp misbehavior with capturing parens inside "{0}". 4 years ago
test_rls_hooks
test_shm_mq Avoid using ambiguous word "non-negative" in error messages. 5 years ago
unsafe_tests Mark unsafe_tests module as not runnable with installcheck 3 years ago
worker_spi
Makefile Fix confusion in SP-GiST between attribute type and leaf storage type. 5 years ago
README

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.