diff options
author | Robert Haas | 2016-01-28 14:29:04 +0000 |
---|---|---|
committer | Robert Haas | 2016-01-28 14:33:09 +0000 |
commit | 80db1ca2d79338c35bb3e01f2aecad78c2231b06 (patch) | |
tree | 753a1df8d928edb4eb7757e368f030a01c2672e6 | |
parent | e37483857dc4cf7106a47847620a074b1c921142 (diff) |
Add [NO]BYPASSRLS options to CREATE USER and ALTER USER docs.
Patch-by: Filip RembiaĆkowski
Reviewed-by: Robert Haas
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/ref/alter_user.sgml | 1 | ||||
-rw-r--r-- | doc/src/sgml/ref/create_user.sgml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/alter_user.sgml b/doc/src/sgml/ref/alter_user.sgml index 84a0c52191..5962a8e166 100644 --- a/doc/src/sgml/ref/alter_user.sgml +++ b/doc/src/sgml/ref/alter_user.sgml @@ -31,6 +31,7 @@ ALTER USER <replaceable class="PARAMETER">role_specification</replaceable> [ WIT | INHERIT | NOINHERIT | LOGIN | NOLOGIN | REPLICATION | NOREPLICATION + | BYPASSRLS | NOBYPASSRLS | CONNECTION LIMIT <replaceable class="PARAMETER">connlimit</replaceable> | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>' | VALID UNTIL '<replaceable class="PARAMETER">timestamp</replaceable>' diff --git a/doc/src/sgml/ref/create_user.sgml b/doc/src/sgml/ref/create_user.sgml index 6c690b36df..574604f796 100644 --- a/doc/src/sgml/ref/create_user.sgml +++ b/doc/src/sgml/ref/create_user.sgml @@ -31,6 +31,7 @@ CREATE USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replac | INHERIT | NOINHERIT | LOGIN | NOLOGIN | REPLICATION | NOREPLICATION + | BYPASSRLS | NOBYPASSRLS | CONNECTION LIMIT <replaceable class="PARAMETER">connlimit</replaceable> | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>' | VALID UNTIL '<replaceable class="PARAMETER">timestamp</replaceable>' |