diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-06-25 18:22:44 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-06-25 18:22:44 -0400 |
commit | 1885b3f5e58aa108f261926c53555ff36e66a1a6 (patch) | |
tree | cd5ed7d80c8750dd91b919598148c8c5eaf0c790 | |
parent | 08a2e40d1434d7775e67fd2857f9615bf60ca3b2 (diff) |
docs: clarify that CREATE DATABASE does not copy db permissions
That is, those database permissions set by GRANT.
Diagnosed-by: Joseph Nahmias
Discussion: https://postgr.es/m/20200614072613.GA21852@nahmias.net
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/ref/create_database.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml index cf0d53b3014..4ce321ef79f 100644 --- a/doc/src/sgml/ref/create_database.sgml +++ b/doc/src/sgml/ref/create_database.sgml @@ -213,8 +213,8 @@ CREATE DATABASE <replaceable class="PARAMETER">name</replaceable> <para> Database-level configuration parameters (set via <xref - linkend="sql-alterdatabase">) are not copied from the template - database. + linkend="sql-alterdatabase">) and database-level permissions (set via + <xref linkend="sql-grant">) are not copied from the template database. </para> <para> |