mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-20 21:37:11 +08:00
The location of the session end hook has been chosen so as it is possible to allow modules to do their own transactions, however any trying to any any subsystem which went through before_shmem_exit() would cause issues, limiting the pluggability of the hook. Per discussion with Tom Lane and Andres Freund. Discussion: https://postgr.es/m/18722.1569906636@sss.pgh.pa.us
29 lines
520 B
Makefile
29 lines
520 B
Makefile
# src/test/modules/Makefile
|
|
|
|
subdir = src/test/modules
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
brin \
|
|
commit_ts \
|
|
dummy_index_am \
|
|
dummy_seclabel \
|
|
snapshot_too_old \
|
|
test_bloomfilter \
|
|
test_ddl_deparse \
|
|
test_extensions \
|
|
test_ginpostinglist \
|
|
test_integerset \
|
|
test_misc \
|
|
test_parser \
|
|
test_pg_dump \
|
|
test_predtest \
|
|
test_rbtree \
|
|
test_rls_hooks \
|
|
test_shm_mq \
|
|
unsafe_tests \
|
|
worker_spi
|
|
|
|
$(recurse)
|