summaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_rule.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2001-10-09 18:46:00 +0000
committerPeter Eisentraut <peter_e@gmx.net>2001-10-09 18:46:00 +0000
commitffb8f73890a9998a7737434aefe190926369ee80 (patch)
treea209d81342cee8b810917ce51bb90c436d0ce52a /doc/src/sgml/ref/create_rule.sgml
parent2f1c24cb1cec952a3a59a9b3a3500fa0e34e474f (diff)
Bunch of copy fitting and style sheet tweakage to get decent looking print
output (from pdfjadetex). Also updated instructions to install documentation processing toolchain.
Diffstat (limited to 'doc/src/sgml/ref/create_rule.sgml')
-rw-r--r--doc/src/sgml/ref/create_rule.sgml18
1 files changed, 7 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml
index f2b83394529..3d7e53ea527 100644
--- a/doc/src/sgml/ref/create_rule.sgml
+++ b/doc/src/sgml/ref/create_rule.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.27 2001/09/14 08:19:55 ishii Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.28 2001/10/09 18:46:00 petere Exp $
Postgres documentation
-->
@@ -225,29 +225,25 @@ CREATE
select command will cause <productname>Postgres</productname> to
report an error because the query cycled too many times:
- <example>
- <title>Example of a circular rewrite rule combination:</title>
- <programlisting>
+<programlisting>
CREATE RULE "_RETemp" AS
ON SELECT TO emp
DO INSTEAD
SELECT * FROM toyemp;
- </programlisting>
- <programlisting>
CREATE RULE "_RETtoyemp" AS
ON SELECT TO toyemp
DO INSTEAD
SELECT * FROM emp;
- </programlisting>
- <para>
+</programlisting>
+
This attempt to select from EMP will cause
<productname>Postgres</productname> to issue an error
because the queries cycled too many times:
- <programlisting>
+
+ <programlisting>
SELECT * FROM emp;
- </programlisting></para>
- </example>
+</programlisting>
</para>
<para>