Commit f49cbb54 authored by Bruce Momjian's avatar Bruce Momjian

No more need to create groups manually.

parent d888ca7c
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.7 2000/04/09 12:08:33 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.8 2000/04/09 12:14:25 momjian Exp $
Postgres documentation Postgres documentation
--> -->
...@@ -151,7 +151,6 @@ GRANT <replaceable class="PARAMETER">privilege</replaceable> [, ...] ON <replace ...@@ -151,7 +151,6 @@ GRANT <replaceable class="PARAMETER">privilege</replaceable> [, ...] ON <replace
<listitem> <listitem>
<para> <para>
A <replaceable class="PARAMETER">group</replaceable> to whom to grant privileges. A <replaceable class="PARAMETER">group</replaceable> to whom to grant privileges.
In the current release, the group must be created explicitly as described below.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
...@@ -271,17 +270,6 @@ ERROR: ChangeAcl: class "<replaceable class="PARAMETER">object</replaceable>" n ...@@ -271,17 +270,6 @@ ERROR: ChangeAcl: class "<replaceable class="PARAMETER">object</replaceable>" n
arwR -- ALL arwR -- ALL
</programlisting> </programlisting>
<tip>
<para>
Currently, to create a GROUP you have to insert
data manually into table pg_group as:
<programlisting>
INSERT INTO pg_group VALUES ('todos');
CREATE USER miriam IN GROUP todos;
</programlisting>
</para>
</tip>
</para> </para>
<para> <para>
......
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