summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart2000-09-12 05:34:28 +0000
committerThomas G. Lockhart2000-09-12 05:34:28 +0000
commit1cd042d353565680302f73741df5a12609c27acd (patch)
tree45f8188a309d2214f87664a01d0bc633fbac9c04
parent2ceee7a22ba69179dccf1d8166223b2ff27dff97 (diff)
Clean up markup to be more correct.
From "He Weiping (Laser Henry)" <laser@zhengmai.com.cn>.
-rw-r--r--doc/src/sgml/arch-dev.sgml37
1 files changed, 17 insertions, 20 deletions
diff --git a/doc/src/sgml/arch-dev.sgml b/doc/src/sgml/arch-dev.sgml
index 2afc1052019..52bdb8e4075 100644
--- a/doc/src/sgml/arch-dev.sgml
+++ b/doc/src/sgml/arch-dev.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/arch-dev.sgml,v 2.8 2000/03/31 03:27:40 thomas Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/arch-dev.sgml,v 2.9 2000/09/12 05:34:28 thomas Exp $
-->
<chapter id="overview">
@@ -258,31 +258,28 @@ $Header: /cvsroot/pgsql/doc/src/sgml/arch-dev.sgml,v 2.8 2000/03/31 03:27:40 tho
<productname>Postgres</productname>
for the processing of a query we use an example to illustrate the
changes made to these data structures in every stage.
- </para>
-
- <example id="simple-select">
- <title>A Simple Select</title>
-
- <para>
- This example contains the following simple query that will be used in
- various descriptions and figures throughout the following
- sections. The query assumes that the tables given in
- <citetitle>The Supplier Database</citetitle>
- <!--
- XXX The above citetitle should really be an xref,
- but that part has not yet been converted from Stefan's original document.
- - thomas 1999-02-11
- <xref linkend="supplier" endterm="supplier">
- -->
- have already been defined.
+ This example contains the following simple query that will be used in
+ various descriptions and figures throughout the following
+ sections. The query assumes that the tables given in
+ <citetitle>The Supplier Database</citetitle>
+ <!--
+ XXX The above citetitle should really be an xref,
+ but that part has not yet been converted from Stefan's original document.
+ - thomas 1999-02-11
+ <xref linkend="supplier" endterm="supplier">
+ -->
+ have already been defined.
+
+ <example id="simple-select">
+ <title>A Simple Select</title>
<programlisting>
select s.sname, se.pno
from supplier s, sells se
where s.sno > 2 and s.sno = se.sno;
</programlisting>
- </para>
- </example>
+ </example>
+ </para>
<para>
Figure \ref{parsetree} shows the <firstterm>parse tree</firstterm> built by the