diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/grant.sgml | 10 | ||||
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index e39b925c5da..59b0d8148e7 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.38 2003/11/29 19:51:39 pgsql Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.39 2004/03/22 03:38:24 momjian Exp $ PostgreSQL documentation --> @@ -285,10 +285,10 @@ GRANT { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] } <programlisting> => \z mytable - Access privileges for database "lusitania" - Schema | Table | Access privileges ---------+---------+--------------------------------------- - public | mytable | {=r/postgres,miriam=arwdRxt/postgres,"group todos=arw/postgres"} + Access privileges for database "lusitania" + Schema | Name | Type | Access privileges +--------+---------+-------+----------------------------------------------------------------- + public | mytable | table | {=r/postgres,miriam=arwdRxt/postgres,"group todos=arw/postgres"} (1 row) </programlisting> The entries shown by <command>\z</command> are interpreted thus: diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index c9f0278ec90..e996bd6e428 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.106 2004/02/13 05:10:02 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.107 2004/03/22 03:38:24 momjian Exp $ PostgreSQL documentation --> @@ -995,10 +995,10 @@ testdb=> <term><literal>\dp</literal> [ <replaceable class="parameter">pattern</replaceable> ]</term> <listitem> <para> - Produces a list of all available tables with their + Produces a list of all available tables, views and sequences with their associated access privileges. If <replaceable class="parameter">pattern</replaceable> is - specified, only tables whose names match the pattern are listed. + specified, only tables, views and sequences whose names match the pattern are listed. </para> <para> @@ -1695,10 +1695,10 @@ lo_import 152801 <term><literal>\z</literal> [ <replaceable class="parameter">pattern</replaceable> ]</term> <listitem> <para> - Produces a list of all available tables with their + Produces a list of all available tables, views and sequences with their associated access privileges. If a <replaceable class="parameter">pattern</replaceable> is - specified, only tables whose names match the pattern are listed. + specified, only tables,views and sequences whose names match the pattern are listed. </para> <para> |