Commit abab776b authored by Tom Lane's avatar Tom Lane

Somebody forgot to add this ERRCODE everywhere it should go ...

parent 1272ac82
<!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.22 2007/01/31 20:56:17 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/errcodes.sgml,v 1.23 2008/01/15 01:36:53 tgl Exp $ -->
<appendix id="errcodes-appendix"> <appendix id="errcodes-appendix">
<title><productname>PostgreSQL</productname> Error Codes</title> <title><productname>PostgreSQL</productname> Error Codes</title>
...@@ -541,6 +541,12 @@ ...@@ -541,6 +541,12 @@
<entry>untranslatable_character</entry> <entry>untranslatable_character</entry>
</row> </row>
<row>
<entry><literal>2200L</literal></entry>
<entry>NOT AN XML DOCUMENT</entry>
<entry>not_an_xml_document</entry>
</row>
<row> <row>
<entry><literal>2200M</literal></entry> <entry><literal>2200M</literal></entry>
<entry>INVALID XML DOCUMENT</entry> <entry>INVALID XML DOCUMENT</entry>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* Copyright (c) 2003-2008, PostgreSQL Global Development Group * Copyright (c) 2003-2008, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/pl/plpgsql/src/plerrcodes.h,v 1.12 2008/01/01 19:46:00 momjian Exp $ * $PostgreSQL: pgsql/src/pl/plpgsql/src/plerrcodes.h,v 1.13 2008/01/15 01:36:53 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -243,6 +243,10 @@ ...@@ -243,6 +243,10 @@
"untranslatable_character", ERRCODE_UNTRANSLATABLE_CHARACTER "untranslatable_character", ERRCODE_UNTRANSLATABLE_CHARACTER
}, },
{
"not_an_xml_document", ERRCODE_NOT_AN_XML_DOCUMENT
},
{ {
"invalid_xml_document", ERRCODE_INVALID_XML_DOCUMENT "invalid_xml_document", ERRCODE_INVALID_XML_DOCUMENT
}, },
......
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