diff options
author | Tom Lane | 2003-10-28 20:18:09 +0000 |
---|---|---|
committer | Tom Lane | 2003-10-28 20:18:09 +0000 |
commit | 50cb974068ea778a170942c3183b08ff60ff9761 (patch) | |
tree | 58742ff0f121fd0622e0db6ebc5d48a144f05c56 | |
parent | 53b714d2a76a8ff783538b009d72c12035a36b1d (diff) |
Adjust wording to avoid giving the impression that schema USAGE
privilege hides system catalog entries.
-rw-r--r-- | doc/src/sgml/ddl.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 4b15809993d..9b2857c1d5a 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.19 2003/09/12 22:17:22 tgl Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.20 2003/10/28 20:18:09 tgl Exp $ --> <chapter id="ddl"> <title>Data Definition</title> @@ -1728,7 +1728,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4; </indexterm> <para> - By default, users cannot see the objects in schemas they do not + By default, users cannot access any objects in schemas they do not own. To allow that, the owner of the schema needs to grant the <literal>USAGE</literal> privilege on the schema. To allow users to make use of the objects in the schema, additional privileges |