Skip to content

Commit 6165a27

Browse files
committed
Fix erroneous example, per Tim Knowles.
1 parent 137b123 commit 6165a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/ddl.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.14 2003/03/25 16:15:35 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.15 2003/05/07 03:41:31 tgl Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -1537,7 +1537,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4;
15371537
connect to a given database to create objects there. If you do
15381538
not want to allow that, you can revoke that privilege:
15391539
<programlisting>
1540-
REVOKE CREATE ON public FROM PUBLIC;
1540+
REVOKE CREATE ON SCHEMA public FROM PUBLIC;
15411541
</programlisting>
15421542
(The first <quote>public</quote> is the schema, the second
15431543
<quote>public</quote> means <quote>every user</quote>. In the

0 commit comments

Comments
 (0)