diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2006-12-28 14:28:36 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2006-12-28 14:28:36 +0000 |
commit | ad1425ae4346f599fc2420c00800a3748fed1259 (patch) | |
tree | 610fb9dc1f930d9cb94426f9988516a19870648e /src/include/utils/xml.h | |
parent | d9e1c97feb47a6f61707282133c4546fb682a5a8 (diff) | |
download | postgresql-ad1425ae4346f599fc2420c00800a3748fed1259.tar.gz postgresql-ad1425ae4346f599fc2420c00800a3748fed1259.zip |
Add send and recv functions for xml type.
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index 713bdaeb115..ca501420326 100644 --- a/src/include/utils/xml.h +++ b/src/include/utils/xml.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.3 2006/12/24 00:29:20 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.4 2006/12/28 14:28:36 petere Exp $ * *------------------------------------------------------------------------- */ @@ -26,6 +26,8 @@ typedef struct varlena xmltype; extern Datum xml_in(PG_FUNCTION_ARGS); extern Datum xml_out(PG_FUNCTION_ARGS); +extern Datum xml_recv(PG_FUNCTION_ARGS); +extern Datum xml_send(PG_FUNCTION_ARGS); extern Datum xmlcomment(PG_FUNCTION_ARGS); extern Datum texttoxml(PG_FUNCTION_ARGS); extern Datum xmlvalidate(PG_FUNCTION_ARGS); |