diff options
author | Peter Eisentraut | 2014-02-24 02:25:35 +0000 |
---|---|---|
committer | Peter Eisentraut | 2014-02-24 02:31:08 +0000 |
commit | bb4eefe7bf518e42c73797ea37b033a5d8a8e70a (patch) | |
tree | ae6df0b5d00f91bb4c7921673f79dca66642f850 /doc/src/sgml/ref/explain.sgml | |
parent | 769065c1b2471f484bb48bb58a8bdcf1d12a419c (diff) |
doc: Improve DocBook XML validity
DocBook XML is superficially compatible with DocBook SGML but has a
slightly stricter DTD that we have been violating in a few cases.
Although XSLT doesn't care whether the document is valid, the style
sheets don't necessarily process invalid documents correctly, so we need
to work toward fixing this.
This first commit moves the indexterms in refentry elements to an
allowed position. It has no impact on the output.
Diffstat (limited to 'doc/src/sgml/ref/explain.sgml')
-rw-r--r-- | doc/src/sgml/ref/explain.sgml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml index 0f579fb161f..04a78ee82ea 100644 --- a/doc/src/sgml/ref/explain.sgml +++ b/doc/src/sgml/ref/explain.sgml @@ -4,17 +4,6 @@ PostgreSQL documentation --> <refentry id="SQL-EXPLAIN"> - <refmeta> - <refentrytitle>EXPLAIN</refentrytitle> - <manvolnum>7</manvolnum> - <refmiscinfo>SQL - Language Statements</refmiscinfo> - </refmeta> - - <refnamediv> - <refname>EXPLAIN</refname> - <refpurpose>show the execution plan of a statement</refpurpose> - </refnamediv> - <indexterm zone="sql-explain"> <primary>EXPLAIN</primary> </indexterm> @@ -29,6 +18,17 @@ PostgreSQL documentation <secondary>showing the query plan</secondary> </indexterm> + <refmeta> + <refentrytitle>EXPLAIN</refentrytitle> + <manvolnum>7</manvolnum> + <refmiscinfo>SQL - Language Statements</refmiscinfo> + </refmeta> + + <refnamediv> + <refname>EXPLAIN</refname> + <refpurpose>show the execution plan of a statement</refpurpose> + </refnamediv> + <refsynopsisdiv> <synopsis> EXPLAIN [ ( <replaceable class="parameter">option</replaceable> [, ...] ) ] <replaceable class="parameter">statement</replaceable> |