1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary and

xmloption GUC variables into enums..
This commit is contained in:
Magnus Hagander
2008-04-04 08:33:15 +00:00
parent 55f6e5f689
commit d672ea6ffa
3 changed files with 37 additions and 66 deletions

View File

@ -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 */