diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-07-25 09:16:14 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-07-25 09:16:14 -0400 |
commit | 7c26395661ce549621db6fa93c0abb9cdbac9837 (patch) | |
tree | b906d0ceab2e6d6c1ba2b9044cf06fe616c1959f /doc/src | |
parent | 2d6fee09eba8474d9a69c08bf716f3e2d31e5fdf (diff) | |
download | postgresql-7c26395661ce549621db6fa93c0abb9cdbac9837.tar.gz postgresql-7c26395661ce549621db6fa93c0abb9cdbac9837.zip |
Add new pgbench options, --tablespace and --index-tablespace.
Per a request from Greg Smith.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/pgbench.sgml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/src/sgml/pgbench.sgml b/doc/src/sgml/pgbench.sgml index c1e5c9c7b6f..2ae3b9e317f 100644 --- a/doc/src/sgml/pgbench.sgml +++ b/doc/src/sgml/pgbench.sgml @@ -160,6 +160,26 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</> </varlistentry> <varlistentry> + <term><option>--index-tablespace=<replaceable>index_tablespace</replaceable></option></term> + <listitem> + <para> + Create indexes in the specified tablespace, rather than the default + tablespace. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--tablespace=<replaceable>tablespace</replaceable></option></term> + <listitem> + <para> + Create tables in the specified tablespace, rather than the default + tablespace. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>--unlogged-tables</option></term> <listitem> <para> |