diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-07-29 16:43:57 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-07-29 16:43:57 -0400 |
commit | 60fb25a3f56bd78e961cc7263e5ae11e1eceeb5e (patch) | |
tree | 2ed9c13c5e37c10c815354cbf0554ac4a51507a2 | |
parent | 6545a901aaf84cb05212bb6a7674059908f527c3 (diff) | |
download | postgresql-60fb25a3f56bd78e961cc7263e5ae11e1eceeb5e.tar.gz postgresql-60fb25a3f56bd78e961cc7263e5ae11e1eceeb5e.zip |
Move new pgbench options to correct section of --help output.
-rw-r--r-- | contrib/pgbench/pgbench.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 9892f4c3bbc..9d57436aeb7 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -342,6 +342,12 @@ usage(const char *progname) " -i invokes initialization mode\n" " -F NUM fill factor\n" " -s NUM scaling factor\n" + " --index-tablespace=TABLESPACE\n" + " create indexes in the specified tablespace\n" + " --tablespace=TABLESPACE\n" + " create tables in the specified tablespace\n" + " --unlogged-tables\n" + " create tables as unlogged tables\n" "\nBenchmarking options:\n" " -c NUM number of concurrent database clients (default: 1)\n" " -C establish new connection for each transaction\n" @@ -365,12 +371,6 @@ usage(const char *progname) " -h HOSTNAME database server host or socket directory\n" " -p PORT database server port number\n" " -U USERNAME connect as specified database user\n" - " --index-tablespace=TABLESPACE\n" - " create indexes in the specified tablespace\n" - " --tablespace=TABLESPACE\n" - " create tables in the specified tablespace\n" - " --unlogged-tables\n" - " create tables as unlogged tables\n" " --help show this help, then exit\n" " --version output version information, then exit\n" "\n" |