From 80db1ca2d79338c35bb3e01f2aecad78c2231b06 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 28 Jan 2016 09:29:04 -0500 Subject: [PATCH] Add [NO]BYPASSRLS options to CREATE USER and ALTER USER docs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch-by: Filip RembiaƂkowski Reviewed-by: Robert Haas Backpatch-through: 9.5 --- doc/src/sgml/ref/alter_user.sgml | 1 + doc/src/sgml/ref/create_user.sgml | 1 + 2 files changed, 2 insertions(+) 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 role_specification [ WIT | INHERIT | NOINHERIT | LOGIN | NOLOGIN | REPLICATION | NOREPLICATION + | BYPASSRLS | NOBYPASSRLS | CONNECTION LIMIT connlimit | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' | VALID UNTIL 'timestamp' 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 name [ [ WITH ] connlimit | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' | VALID UNTIL 'timestamp'