diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-09-23 09:25:20 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-09-23 09:25:20 -0400 |
commit | b056b716e28562f5c53dfb143725294d44f14d38 (patch) | |
tree | a919e90dd00bf983c6914575ccf099737f1457f3 /doc/src | |
parent | e5e2f7b0546c0409323af262bdd17a8e19ca3836 (diff) | |
download | postgresql-b056b716e28562f5c53dfb143725294d44f14d38.tar.gz postgresql-b056b716e28562f5c53dfb143725294d44f14d38.zip |
Add --{no-,}replication flags to createuser.
Fujii Masao, reviewed by Cédric Villemain, with some doc changes by me.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/createuser.sgml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/createuser.sgml b/doc/src/sgml/ref/createuser.sgml index 0c47fb49971..4cbfd69148c 100644 --- a/doc/src/sgml/ref/createuser.sgml +++ b/doc/src/sgml/ref/createuser.sgml @@ -241,6 +241,28 @@ PostgreSQL documentation </varlistentry> <varlistentry> + <term><option>--replication</></term> + <listitem> + <para> + The new user will have the REPLICATION privilege, which is + described more fully in the documentation for + <xref linkend="sql-createrole">. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><option>--no-replication</></term> + <listitem> + <para> + The new user will not have the REPLICATION privilege, which is + described more fully in the documentation for + <xref linkend="sql-createrole">. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><option>-V</></term> <term><option>--version</></term> <listitem> |