postgresql/src/test/modules
Greg Stark e1623c3959 Fix various common mispellings.
Mostly these are just comments but there are a few in documentation
and a handful in code and tests. Hopefully this doesn't cause too much
unnecessary pain for backpatching. I relented from some of the most
common like "thru" for that reason. The rest don't seem numerous
enough to cause problems.

Thanks to Kevin Lyda's tool https://pypi.python.org/pypi/misspellings
2016-06-03 16:08:45 +01:00
..
brin Fix phony .PHONY. 2016-03-19 17:19:37 -04:00
commit_ts Rework PostgresNode's psql method 2016-03-03 17:58:30 -03:00
dummy_seclabel Update copyright for 2016 2016-01-02 13:33:40 -05:00
snapshot_too_old Fix whitespace 2016-04-11 14:44:51 -04:00
test_ddl_deparse Fix various common mispellings. 2016-06-03 16:08:45 +01:00
test_extensions In recordExtensionInitPriv(), keep the scan til we're done with it 2016-04-15 21:57:15 -04:00
test_parser Update copyright for 2016 2016-01-02 13:33:40 -05:00
test_pg_dump Qualify table usage in dumpTable() and use regclass 2016-05-24 20:10:16 -04:00
test_rls_hooks Update copyright for 2016 2016-01-02 14:19:48 -05:00
test_shm_mq Update copyright for 2016 2016-01-02 14:19:48 -05:00
worker_spi Update copyright for 2016 2016-01-02 14:19:48 -05:00
Makefile Add TAP tests for pg_dump 2016-05-06 14:06:50 -04:00
README Add README in src/test and src/test/modules 2016-02-25 21:08:32 -03: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".

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.