|
7 | 7 | * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.40 2007/04/0501:46:27 momjian Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.41 2007/04/0513:53:23 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
@@ -112,7 +112,9 @@ XmlOptionType xmloption; |
112 | 112 | #defineNO_XML_SUPPORT() \ |
113 | 113 | ereport(ERROR, \ |
114 | 114 | (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), \ |
115 | | - errmsg("feature not supported; no libxml support in this installation"))) |
| 115 | + errmsg("unsupported XML feature"), \ |
| 116 | + errdetail("This functionality requires libxml support."), \ |
| 117 | + errhint("You need to re-compile PostgreSQL using --with-libxml."))) |
116 | 118 |
|
117 | 119 |
|
118 | 120 | #define_textin(str) DirectFunctionCall1(textin, CStringGetDatum(str)) |
|