diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-07 03:41:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-07 03:41:31 +0000 |
commit | 6165a278e52046de6e6c9ccf854566b6a1e22f0f (patch) | |
tree | 2adf8b03ba20d9e09c4f7f2560fccf9e9f3ec34f | |
parent | 137b123fc778166bcf1b0ae214372faa762953d4 (diff) | |
download | postgresql-6165a278e52046de6e6c9ccf854566b6a1e22f0f.tar.gz postgresql-6165a278e52046de6e6c9ccf854566b6a1e22f0f.zip |
Fix erroneous example, per Tim Knowles.
-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 e0d39654bbd..67de4b8e546 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.14 2003/03/25 16:15:35 petere Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.15 2003/05/07 03:41:31 tgl Exp $ --> <chapter id="ddl"> <title>Data Definition</title> @@ -1537,7 +1537,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4; connect to a given database to create objects there. If you do not want to allow that, you can revoke that privilege: <programlisting> -REVOKE CREATE ON public FROM PUBLIC; +REVOKE CREATE ON SCHEMA public FROM PUBLIC; </programlisting> (The first <quote>public</quote> is the schema, the second <quote>public</quote> means <quote>every user</quote>. In the |