diff options
author | Fujii Masao <fujii@postgresql.org> | 2013-07-18 01:20:05 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2013-07-18 01:21:30 +0900 |
commit | 750f43685b1b88d4281074940cdcea0e328593aa (patch) | |
tree | c033a21a1eb319ecf27ce348f591f48203ad0cab | |
parent | f2719f6975398727ed492ecbcb2028bd134e5f6b (diff) | |
download | postgresql-750f43685b1b88d4281074940cdcea0e328593aa.tar.gz postgresql-750f43685b1b88d4281074940cdcea0e328593aa.zip |
Fix typo in previous pgbench --progress patch.
-rw-r--r-- | contrib/pgbench/pgbench.c | 2 | ||||
-rw-r--r-- | doc/src/sgml/pgbench.sgml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 23ee53c53e8..2ad8f0bb5b4 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -354,7 +354,7 @@ usage(void) "(default: simple)\n" " -n, --no-vacuum do not run VACUUM before tests\n" " -N, --skip-some-updates skip updates of pgbench_tellers and pgbench_branches\n" - " -P, --progress NUM show thread progress report every NUM seconds\n" + " -P, --progress=NUM show thread progress report every NUM seconds\n" " -r, --report-latencies report average latency per command\n" " -s, --scale=NUM report this scale factor in output\n" " -S, --select-only perform SELECT-only transactions\n" diff --git a/doc/src/sgml/pgbench.sgml b/doc/src/sgml/pgbench.sgml index 1ab8bbfe7c7..be9adceb0fb 100644 --- a/doc/src/sgml/pgbench.sgml +++ b/doc/src/sgml/pgbench.sgml @@ -409,10 +409,10 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</> <varlistentry> <term><option>-P</option> <replaceable>sec</></term> - <term><option>--progress</option> <replaceable>sec</></term> + <term><option>--progress=</option> <replaceable>sec</></term> <listitem> <para> - Show progress report about every <literal>sec</> seconds. + Show progress report every <literal>sec</> seconds. </para> </listitem> </varlistentry> |