diff options
author | Masahiko Sawada <msawada@postgresql.org> | 2023-11-30 14:29:48 +0900 |
---|---|---|
committer | Masahiko Sawada <msawada@postgresql.org> | 2023-11-30 14:29:48 +0900 |
commit | e255b646a16b45823c338dadf787813fc9e191dc (patch) | |
tree | 7fd87cf5d0e8caf51d8ba886904757e0569b8469 /doc/src | |
parent | a243569bf65c5664436e8f63d870b7ee9c014dcb (diff) | |
download | postgresql-e255b646a16b45823c338dadf787813fc9e191dc.tar.gz postgresql-e255b646a16b45823c338dadf787813fc9e191dc.zip |
Add tests for XID wraparound.
The test module includes helper functions to quickly burn through lots
of XIDs. They are used in the tests, and are also handy for manually
testing XID wraparound.
Since these tests are very expensive the entire suite is disabled by
default. It requires to set PG_TEST_EXTRA to run it.
Reviewed-by: Daniel Gustafsson, John Naylor, Michael Paquier
Reviewed-by: vignesh C
Author: Heikki Linnakangas, Masahiko Sawada, Andres Freund
Discussion: https://www.postgresql.org/message-id/CAD21AoDVhkXp8HjpFO-gp3TgL6tCKcZQNxn04m01VAtcSi-5sA%40mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/regress.sgml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index 69f627d7f43..70d9bdefe1b 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -314,6 +314,16 @@ make check-world PG_TEST_EXTRA='kerberos ldap ssl load_balance' </para> </listitem> </varlistentry> + + <varlistentry> + <term><literal>xid_wraparound</literal></term> + <listitem> + <para> + Runs the test suite under <filename>src/test/module/xid_wrapround</filename>. + Not enabled by default because it is resource intensive. + </para> + </listitem> + </varlistentry> </variablelist> Tests for features that are not supported by the current build |