@@ -36,10 +36,8 @@ CREATE ROLE <replaceable class="parameter">name</replaceable> [ [ WITH ] <replac
36
36
| [ ENCRYPTED ] PASSWORD '<replaceable class="parameter">password</replaceable>' | PASSWORD NULL
37
37
| VALID UNTIL '<replaceable class="parameter">timestamp</replaceable>'
38
38
| IN ROLE <replaceable class="parameter">role_name</replaceable> [, ...]
39
- | IN GROUP <replaceable class="parameter">role_name</replaceable> [, ...]
40
39
| ROLE <replaceable class="parameter">role_name</replaceable> [, ...]
41
40
| ADMIN <replaceable class="parameter">role_name</replaceable> [, ...]
42
- | USER <replaceable class="parameter">role_name</replaceable> [, ...]
43
41
| SYSID <replaceable class="parameter">uid</replaceable>
44
42
</synopsis>
45
43
</refsynopsisdiv>
@@ -294,15 +292,6 @@ in sync when changing the above synopsis!
294
292
</listitem>
295
293
</varlistentry>
296
294
297
- <varlistentry>
298
- <term><literal>IN GROUP</literal> <replaceable class="parameter">role_name</replaceable></term>
299
- <listitem>
300
- <para><literal>IN GROUP</literal> is an obsolete spelling of
301
- <literal>IN ROLE</literal>.
302
- </para>
303
- </listitem>
304
- </varlistentry>
305
-
306
295
<varlistentry>
307
296
<term><literal>ROLE</literal> <replaceable class="parameter">role_name</replaceable></term>
308
297
<listitem>
@@ -326,16 +315,6 @@ in sync when changing the above synopsis!
326
315
</listitem>
327
316
</varlistentry>
328
317
329
- <varlistentry>
330
- <term><literal>USER</literal> <replaceable class="parameter">role_name</replaceable></term>
331
- <listitem>
332
- <para>
333
- The <literal>USER</literal> clause is an obsolete spelling of
334
- the <literal>ROLE</literal> clause.
335
- </para>
336
- </listitem>
337
- </varlistentry>
338
-
339
318
<varlistentry>
340
319
<term><literal>SYSID</literal> <replaceable class="parameter">uid</replaceable></term>
341
320
<listitem>
@@ -484,6 +463,22 @@ CREATE ROLE <replaceable class="parameter">name</replaceable> [ WITH ADMIN <repl
484
463
by giving users the <literal>NOINHERIT</literal> attribute, while roles are
485
464
given the <literal>INHERIT</literal> attribute.
486
465
</para>
466
+
467
+ <para>
468
+ The <literal>USER</literal> clause has the same behavior as
469
+ <literal>ROLE</literal> but has been deprecated:
470
+ <synopsis>
471
+ USER <replaceable class="parameter">role_name</replaceable> [, ...]
472
+ </synopsis>
473
+ </para>
474
+
475
+ <para>
476
+ The <literal>IN GROUP</literal> clause has the same behavior as <literal>IN
477
+ ROLE</literal> but has been deprecated:
478
+ <synopsis>
479
+ IN GROUP <replaceable class="parameter">role_name</replaceable> [, ...]
480
+ </synopsis>
481
+ </para>
487
482
</refsect1>
488
483
489
484
<refsect1>
0 commit comments