diff options
author | Magnus Hagander <magnus@hagander.net> | 2008-04-04 08:33:15 +0000 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2008-04-04 08:33:15 +0000 |
commit | d672ea6ffa16b1ab302c6d8ba5d4c797f398625b (patch) | |
tree | a99738ed0308b08c82f4234b60aa6625b2d5a7e5 /src/include/utils/xml.h | |
parent | 55f6e5f689d3bd086fe4fdcdc823c655005e4d88 (diff) | |
download | postgresql-d672ea6ffa16b1ab302c6d8ba5d4c797f398625b.tar.gz postgresql-d672ea6ffa16b1ab302c6d8ba5d4c797f398625b.zip |
Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary and
xmloption GUC variables into enums..
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index 99a46f8ef76..0111bd3e082 100644 --- a/src/include/utils/xml.h +++ b/src/include/utils/xml.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.23 2008/01/15 18:57:00 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.24 2008/04/04 08:33:15 mha Exp $ * *------------------------------------------------------------------------- */ @@ -83,8 +83,8 @@ typedef enum XMLBINARY_HEX } XmlBinaryType; -extern XmlBinaryType xmlbinary; +extern int xmlbinary; /* XmlBinaryType, but int for guc enum */ -extern XmlOptionType xmloption; +extern int xmloption; /* XmlOptionType, but int for guc enum */ #endif /* XML_H */ |