postgresql/src/test/modules
Peter Eisentraut 1784f278a6 Replace remaining StrNCpy() by strlcpy()
They are equivalent, except that StrNCpy() zero-fills the entire
destination buffer instead of providing just one trailing zero.  For
all but a tiny number of callers, that's just overhead rather than
being desirable.

Remove StrNCpy() as it is now unused.

In some cases, namestrcpy() is the more appropriate function to use.
While we're here, simplify the API of namestrcpy(): Remove the return
value, don't check for NULL input.  Nothing was using that anyway.
Also, remove a few unused name-related functions.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/44f5e198-36f6-6cdb-7fa9-60e34784daae%402ndquadrant.com
2020-08-10 23:20:37 +02:00
..
brin Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09:00
commit_ts Fix timestamp range handling in regression tests of modules/commit_ts/ 2020-07-13 10:54:26 +09:00
delay_execution Support testing of cases where table schemas change after planning. 2020-08-07 14:30:47 -04:00
dummy_index_am Initial pgindent and pgperltidy run for v13. 2020-05-14 13:06:50 -04:00
dummy_seclabel doc: Fix naming of SELinux 2020-01-10 09:36:55 +09:00
snapshot_too_old Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09:00
ssl_passphrase_callback Replace remaining StrNCpy() by strlcpy() 2020-08-10 23:20:37 +02:00
test_bloomfilter Update copyrights for 2020 2020-01-01 12:21:45 -05:00
test_ddl_deparse Introduce xid8-based functions to replace txid_XXX. 2020-04-07 12:04:32 +12:00
test_extensions Add ALTER .. NO DEPENDS ON 2020-04-20 13:42:12 -04:00
test_ginpostinglist Update copyrights for 2020 2020-01-01 12:21:45 -05:00
test_integerset Update copyrights for 2020 2020-01-01 12:21:45 -05:00
test_misc tap tests: replace 'master' with 'primary'. 2020-07-08 12:39:56 -07:00
test_parser Remove support for upgrading extensions from "unpackaged" state. 2020-02-19 16:59:14 -05:00
test_pg_dump Refactor AlterExtensionContentsStmt grammar 2020-06-13 09:19:30 +02:00
test_predtest Update copyrights for 2020 2020-01-01 12:21:45 -05:00
test_rbtree Update copyrights for 2020 2020-01-01 12:21:45 -05:00
test_rls_hooks Introduce macros for typalign and typstorage constants. 2020-03-04 10:34:25 -05:00
test_shm_mq Spelling adjustments 2020-06-07 15:06:51 +02:00
unsafe_tests Remove junk in test file 2020-07-08 11:17:52 +02:00
worker_spi Update copyrights for 2020 2020-01-01 12:21:45 -05:00
Makefile Support testing of cases where table schemas change after planning. 2020-08-07 14:30:47 -04: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.