diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-02-21 22:39:36 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-02-21 22:39:36 +0000 |
commit | 3a95427d42235d19d71023971e8db09769738b9f (patch) | |
tree | d46ef3a7bc8c8560bd09469ecb343624ee15edfd | |
parent | 5d711606010c8963a1e6f92ca7886b83eb95a4c9 (diff) | |
download | postgresql-3a95427d42235d19d71023971e8db09769738b9f.tar.gz postgresql-3a95427d42235d19d71023971e8db09769738b9f.zip |
Wrap some SQL syntax examples so \h shows them better.
-rw-r--r-- | doc/src/sgml/ref/fetch.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/ref/grant.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/ref/revoke.sgml | 5 |
3 files changed, 9 insertions, 6 deletions
diff --git a/doc/src/sgml/ref/fetch.sgml b/doc/src/sgml/ref/fetch.sgml index 85f8fbb00a1..d12f1120468 100644 --- a/doc/src/sgml/ref/fetch.sgml +++ b/doc/src/sgml/ref/fetch.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.17 2001/12/08 03:24:36 thomas Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.18 2002/02/21 22:39:35 momjian Exp $ PostgreSQL documentation --> @@ -24,7 +24,8 @@ PostgreSQL documentation </refsynopsisdivinfo> <synopsis> FETCH [ <replaceable class="PARAMETER">direction</replaceable> ] [ <replaceable class="PARAMETER">count</replaceable> ] { IN | FROM } <replaceable class="PARAMETER">cursor</replaceable> -FETCH [ FORWARD | BACKWARD | RELATIVE ] [ <replaceable class="PARAMETER">#</replaceable> | ALL | NEXT | PRIOR ] { IN | FROM } <replaceable class="PARAMETER">cursor</replaceable> +FETCH [ FORWARD | BACKWARD | RELATIVE ] [ <replaceable class="PARAMETER">#</replaceable> | ALL | NEXT | PRIOR ] + { IN | FROM } <replaceable class="PARAMETER">cursor</replaceable> </synopsis> <refsect2 id="R2-SQL-FETCH-1"> diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index 30168f2e65b..720c5539575 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.20 2002/02/18 23:11:02 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.21 2002/02/21 22:39:36 momjian Exp $ PostgreSQL documentation --> @@ -16,7 +16,8 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -GRANT { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER } [,...] | ALL [ PRIVILEGES ] } +GRANT { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER } + [,...] | ALL [ PRIVILEGES ] } ON [ TABLE ] <replaceable class="PARAMETER">objectname</replaceable> [, ...] TO { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...] diff --git a/doc/src/sgml/ref/revoke.sgml b/doc/src/sgml/ref/revoke.sgml index c0d03c55344..60c31a37c8d 100644 --- a/doc/src/sgml/ref/revoke.sgml +++ b/doc/src/sgml/ref/revoke.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/revoke.sgml,v 1.20 2002/02/18 23:11:03 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/revoke.sgml,v 1.21 2002/02/21 22:39:36 momjian Exp $ PostgreSQL documentation --> @@ -16,7 +16,8 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -REVOKE { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER } [,...] | ALL [ PRIVILEGES ] } +REVOKE { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER } + [,...] | ALL [ PRIVILEGES ] } ON [ TABLE ] <replaceable class="PARAMETER">object</replaceable> [, ...] FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...] |