postgresql/src/test/modules
Tom Lane f7a1a805cb Fix bogus link in test comments.
I apparently copied-and-pasted the wrong link in commit ca8217c10.
Point it where it was meant to go.
2021-01-06 22:09:16 -05:00
..
brin Add a couple of missed .gitignore entries. 2020-12-18 16:24:49 -05:00
commit_ts Fix timestamp range handling in regression tests of modules/commit_ts/ 2020-07-13 10:54:26 +09:00
delay_execution Update copyright for 2021 2021-01-02 13:06:25 -05:00
dummy_index_am Update copyright for 2021 2021-01-02 13:06:25 -05:00
dummy_seclabel Update copyright for 2021 2021-01-02 13:06:25 -05:00
plsample Update copyright for 2021 2021-01-02 13:06:25 -05:00
snapshot_too_old Add a couple of missed .gitignore entries. 2020-12-18 16:24:49 -05:00
ssl_passphrase_callback Replace remaining StrNCpy() by strlcpy() 2020-08-10 23:20:37 +02:00
test_bloomfilter Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_ddl_deparse Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_extensions Fix use-after-free bug with event triggers in an extension script 2020-09-15 21:03:14 -03:00
test_ginpostinglist Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_integerset Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_misc Message fixes and style improvements 2020-09-14 06:42:30 +02:00
test_parser Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_pg_dump Rethink recent fix for pg_dump's handling of extension config tables. 2020-10-07 12:51:02 -04:00
test_predtest Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_rbtree Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_regex Fix bogus link in test comments. 2021-01-06 22:09:16 -05:00
test_rls_hooks Update copyright for 2021 2021-01-02 13:06:25 -05:00
test_shm_mq Update copyright for 2021 2021-01-02 13:06:25 -05:00
unsafe_tests Further stabilize output from rolenames regression test. 2020-09-26 17:42:20 -04:00
worker_spi Update copyright for 2021 2021-01-02 13:06:25 -05:00
Makefile Add a test module for the regular expression package. 2021-01-06 10:51:14 -05:00
README Add an enforcement mechanism for global object names in regression tests. 2019-06-29 11:34:00 -04:00

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.