diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-07-26 16:27:01 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-07-26 16:27:01 +0900 |
commit | f2a37ddbb10177fd731109df4a63d10150a91c0d (patch) | |
tree | 1cddb543d3d19ef3e5436d33a911bb659f0b7f7f | |
parent | e6d9544681b3f5c66a16c72bfd8dca450ec7536a (diff) | |
download | postgresql-f2a37ddbb10177fd731109df4a63d10150a91c0d.tar.gz postgresql-f2a37ddbb10177fd731109df4a63d10150a91c0d.zip |
doc: Fix command example to run regression tests with PGOPTIONS
The documentation mentioned the use of log_checkpoints, that cannot be
used in this context. This commit replaces log_checkpoints with
force_parallel_mode, a developer option useful to perform checks related
to parallelism.
Oversight in 854434c.
Author: Haiying Tang
Discussion: https://postgr.es/m/OS0PR01MB6113954B883ACEB2DDC973F2FBE59@OS0PR01MB6113.jpnprd01.prod.outlook.com
Backpatch-through: 14
-rw-r--r-- | doc/src/sgml/regress.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index acc7a50c2f2..724ef566e76 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -359,7 +359,7 @@ make check LANG=C ENCODING=EUC_JP set in the <varname>PGOPTIONS</varname> environment variable (for settings that allow this): <screen> -make check PGOPTIONS="-c log_checkpoints=on -c work_mem=50MB" +make check PGOPTIONS="-c force_parallel_mode=regress -c work_mem=50MB" </screen> When running against a temporary installation, custom settings can also be set by supplying a pre-written <filename>postgresql.conf</filename>: |