Commit 6165a278 authored by Tom Lane's avatar Tom Lane

Fix erroneous example, per Tim Knowles.

parent 137b123f
<!-- $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"> <chapter id="ddl">
<title>Data Definition</title> <title>Data Definition</title>
...@@ -1537,7 +1537,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4; ...@@ -1537,7 +1537,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4;
connect to a given database to create objects there. If you do connect to a given database to create objects there. If you do
not want to allow that, you can revoke that privilege: not want to allow that, you can revoke that privilege:
<programlisting> <programlisting>
REVOKE CREATE ON public FROM PUBLIC; REVOKE CREATE ON SCHEMA public FROM PUBLIC;
</programlisting> </programlisting>
(The first <quote>public</quote> is the schema, the second (The first <quote>public</quote> is the schema, the second
<quote>public</quote> means <quote>every user</quote>. In the <quote>public</quote> means <quote>every user</quote>. In the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment