mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Somebody forgot to add this ERRCODE everywhere it should go ...
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
<!-- $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 @@
|
|||||||
<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 @@
|
|||||||
*
|
*
|
||||||
* 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 @@
|
|||||||
"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
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user