diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-24 00:29:20 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-24 00:29:20 +0000 |
| commit | c957c0bac7f9785ae2a7520a9f693eeda0ff545b (patch) | |
| tree | 36d172e97e59d00d39fe1b76401b84f9a93b4e1b /doc/src | |
| parent | 64974613c98e9928af7bbccaeb718012b1dc6769 (diff) | |
| download | postgresql-c957c0bac7f9785ae2a7520a9f693eeda0ff545b.tar.gz | |
Code review for XML patch. Instill a bit of sanity in the location of
the XmlExpr code in various lists, use a representation that has some hope
of reverse-listing correctly (though it's still a de-escaping function
shy of correctness), generally try to make it look more like Postgres
coding conventions.
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/errcodes.sgml | 25 | ||||
| -rw-r--r-- | doc/src/sgml/installation.sgml | 4 |
2 files changed, 26 insertions, 3 deletions
diff --git a/doc/src/sgml/errcodes.sgml b/doc/src/sgml/errcodes.sgml index bf06cfaf5e..ced6197d97 100644 --- a/doc/src/sgml/errcodes.sgml +++ b/doc/src/sgml/errcodes.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.20 2006/06/16 23:29:26 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.21 2006/12/24 00:29:17 tgl Exp $ --> <appendix id="errcodes-appendix"> <title><productname>PostgreSQL</productname> Error Codes</title> @@ -541,6 +541,29 @@ <entry>untranslatable_character</entry> </row> +<row> +<entry><literal>2200M</literal></entry> +<entry>INVALID XML DOCUMENT</entry> +<entry>invalid_xml_document</entry> +</row> + +<row> +<entry><literal>2200N</literal></entry> +<entry>INVALID XML CONTENT</entry> +<entry>invalid_xml_content</entry> +</row> + +<row> +<entry><literal>2200S</literal></entry> +<entry>INVALID XML COMMENT</entry> +<entry>invalid_xml_comment</entry> +</row> + +<row> +<entry><literal>2200T</literal></entry> +<entry>INVALID XML PROCESSING INSTRUCTION</entry> +<entry>invalid_xml_processing_instruction</entry> +</row> <row> <entry spanname="span13"><emphasis role="bold">Class 23 — Integrity Constraint Violation</></entry> diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index a56ba9ad9b..3119671fc4 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.269 2006/12/21 16:05:13 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.270 2006/12/24 00:29:17 tgl Exp $ --> <chapter id="installation"> <title><![%standalone-include[<productname>PostgreSQL</>]]> @@ -909,7 +909,7 @@ su - postgres <term><option>--with-libxml</option></term> <listitem> <para> - Build with libxml, required for SQL/XML support. + Build with libxml (enables SQL/XML support). </para> </listitem> </varlistentry> |
