diff options
author | Robert Haas <rhaas@postgresql.org> | 2013-06-27 10:33:04 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2013-06-27 10:33:04 -0400 |
commit | 682d977f816e7fa7f29c723666248a8c3ac09bd6 (patch) | |
tree | 6e6a60647b67ef010c4ea03ae5f28962ba181da9 | |
parent | 79cddb18419778be3202c971b3f21cdd90f7b719 (diff) | |
download | postgresql-682d977f816e7fa7f29c723666248a8c3ac09bd6.tar.gz postgresql-682d977f816e7fa7f29c723666248a8c3ac09bd6.zip |
pgbench: Fix inadvertent inconsistency in help message.
Per report from Fujii Masao.
-rw-r--r-- | contrib/pgbench/pgbench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index d464ef5efab..80203d66d17 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -333,7 +333,7 @@ usage(void) " -F, --fillfactor=NUM set fill factor\n" " -n, --no-vacuum do not run VACUUM after initialization\n" " -q, --quiet quiet logging (one message each 5 seconds)\n" - " -s NUM, --scale NUM scaling factor\n" + " -s, --scale=NUM scaling factor\n" " --foreign-keys create foreign key constraints between tables\n" " --index-tablespace=TABLESPACE\n" " create indexes in the specified tablespace\n" |