diff options
author | Nathan Bossart <nathan@postgresql.org> | 2024-03-25 11:08:53 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2024-03-25 11:08:53 -0500 |
commit | 3ff01b2b6e7e8627b191a2c8c2690c8ea2f0820d (patch) | |
tree | 0e71b323e4ba20a2940a3333893b091eab5532ba /doc/src | |
parent | 374c7a2290429eac3217b0c7b0b485db9c2bcc72 (diff) | |
download | postgresql-3ff01b2b6e7e8627b191a2c8c2690c8ea2f0820d.tar.gz postgresql-3ff01b2b6e7e8627b191a2c8c2690c8ea2f0820d.zip |
Adjust pgbench option for debug mode.
Many other utilities use -d to specify the database to use, but
pgbench uses it to enable debug mode. This is causing some users
to accidentally enable it. This commit changes -d to accept the
database name and introduces --dbname. Debug mode can still be
enabled with --debug. This is a backward-incompatible change, but
it has been judged to be worth the trade-off, i.e., some scripts
that use pgbench will need to be updated.
Author: Greg Sabino Mullane
Reviewed-by: Tomas Vondra, Euler Taveira, Alvaro Herrera, David Christensen
Discussion: https://postgr.es/m/CAKAnmmLjAzwVtb%3DVEaeuCtnmOLpzkJ1uJ_XiQ362YdD9B72HSg%40mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pgbench.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index 279bb0ad7df..c3d0ec240b1 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -162,7 +162,8 @@ pgbench <optional> <replaceable>options</replaceable> </optional> <replaceable>d <variablelist> <varlistentry id="pgbench-option-dbname"> - <term><replaceable class="parameter">dbname</replaceable></term> + <term><option><optional>-d</optional> <replaceable class="parameter">dbname</replaceable></option></term> + <term><option><optional>--dbname=</optional><replaceable class="parameter">dbname</replaceable></option></term> <listitem> <para> Specifies the name of the database to test in. If this is @@ -463,7 +464,6 @@ pgbench <optional> <replaceable>options</replaceable> </optional> <replaceable>d </varlistentry> <varlistentry id="pgbench-option-debug"> - <term><option>-d</option></term> <term><option>--debug</option></term> <listitem> <para> |