Commit 1cd042d3 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Clean up markup to be more correct.

 From "He Weiping (Laser Henry)" <laser@zhengmai.com.cn>.
parent 2ceee7a2
<!-- <!--
$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"> <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 ...@@ -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> <productname>Postgres</productname>
for the processing of a query we use an example to illustrate the for the processing of a query we use an example to illustrate the
changes made to these data structures in every stage. changes made to these data structures in every stage.
</para> This example contains the following simple query that will be used in
various descriptions and figures throughout the following
<example id="simple-select"> sections. The query assumes that the tables given in
<title>A Simple Select</title> <citetitle>The Supplier Database</citetitle>
<!--
<para> XXX The above citetitle should really be an xref,
This example contains the following simple query that will be used in but that part has not yet been converted from Stefan's original document.
various descriptions and figures throughout the following - thomas 1999-02-11
sections. The query assumes that the tables given in <xref linkend="supplier" endterm="supplier">
<citetitle>The Supplier Database</citetitle> -->
<!-- have already been defined.
XXX The above citetitle should really be an xref,
but that part has not yet been converted from Stefan's original document. <example id="simple-select">
- thomas 1999-02-11 <title>A Simple Select</title>
<xref linkend="supplier" endterm="supplier">
-->
have already been defined.
<programlisting> <programlisting>
select s.sname, se.pno select s.sname, se.pno
from supplier s, sells se from supplier s, sells se
where s.sno > 2 and s.sno = se.sno; where s.sno > 2 and s.sno = se.sno;
</programlisting> </programlisting>
</para> </example>
</example> </para>
<para> <para>
Figure \ref{parsetree} shows the <firstterm>parse tree</firstterm> built by the Figure \ref{parsetree} shows the <firstterm>parse tree</firstterm> built by the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment