mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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.
This commit is contained in:
@ -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>
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user