summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/xml.c
Commit message (Expand)AuthorAgeFilesLines
* Fix encoding handling in xml binary input function. If the XML header didn'tHeikki Linnakangas2009-09-041-14/+21
* Extend EXPLAIN to support output in XML or JSON format.Tom Lane2009-08-101-27/+40
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-162/+160
* Ensure xmlFree(NULL) is a no-op instead of a core dump. Per report fromTom Lane2009-06-101-2/+4
* Fix xmlattribute escaping XML special characters twice (bug #4822).Peter Eisentraut2009-06-091-8/+17
* Fix map_sql_table_to_xmlschema() with dropped attributes.Peter Eisentraut2009-06-081-1/+5
* Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane2009-05-131-104/+177
* Fix intratransaction memory leaks in xml_recv, xmlconcat, xmlroot, andTom Lane2009-05-121-12/+28
* XMLATTRIBUTES() should send the attribute values throughPeter Eisentraut2009-04-081-5/+2
* Add an errdetail explaining why we reject infinite dates and timestampsTom Lane2009-03-271-4/+7
* Remove munging of xml and xpath params to xpath(). The XML must now be a well...Andrew Dunstan2009-03-231-38/+11
* Fix executor/spi.h to follow our usual conventions for include files, ie,Tom Lane2009-01-071-1/+2
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane2008-11-101-7/+18
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-291-23/+2
* Extend the date type to support infinity and -infinity, analogously toTom Lane2008-10-141-1/+6
* Fix crash in bytea-to-XML mapping when the source value is toasted.Tom Lane2008-10-091-34/+47
* Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin.Tom Lane2008-09-161-10/+8
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-2/+2
* Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin,Tom Lane2008-07-031-1/+2
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-2/+1
* Use new cstring/text conversion functions in some additional places.Tom Lane2008-05-041-55/+11
* Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander2008-04-041-3/+3
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-37/+41
* Fix various infelicities that have snuck into usage of errdetail() andTom Lane2008-03-241-8/+8
* Disable the undocumented xmlvalidate() function, which was unintentionallyTom Lane2008-03-011-60/+9
* Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane2008-01-151-253/+243
* It turns out the LIBXML_TEST_VERSION macro calls xmlInitParser().Tom Lane2008-01-121-1/+4
* Fix two places in xml.c that neglected to check the return values ofNeil Conway2008-01-121-5/+15
* Minor perf tweak for _SPI_strdup(): if we're going to call strlen()Neil Conway2008-01-121-3/+4
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Fix XML Schema structure for char types without length (bug #3782)Peter Eisentraut2007-11-281-4/+7
* Suppress compiler warning.Tom Lane2007-11-271-2/+2
* Make casts from xml to text independent of the XML option setting, thusPeter Eisentraut2007-11-271-2/+3
* Use double quotes for quoting xml attributes.Peter Eisentraut2007-11-251-3/+3
* Fix bogus length calculation that could lead to crash if the stringTom Lane2007-11-201-13/+19
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-6/+6
* pgindent run for 8.3.Bruce Momjian2007-11-151-424/+425
* Add missing closing / in xsd:restriction, and remove some unnecessaryTom Lane2007-11-101-5/+5
* xmlGetUTF8Char()'s second argument is both input and output. FixTom Lane2007-11-101-5/+9
* Allow XML processing instructions starting with "xml" while prohibitingPeter Eisentraut2007-11-091-3/+16
* After conferencing again with Bruce, put in more accurate XML error message.Peter Eisentraut2007-11-081-2/+2
* Improve error messagePeter Eisentraut2007-11-081-3/+3
* Some code review for xml.c:Tom Lane2007-11-061-207/+314
* Fix xmlelement() to initialize libxml correctly before using it, and to avoidTom Lane2007-11-051-55/+120
* Guard against possible double free during error escape from XMLTom Lane2007-10-131-4/+14
* Fix the inadvertent libpq ABI breakage discovered by Martin Pitt: theTom Lane2007-10-131-5/+25
* Fix bugs in XML binary I/O functions. Heikki and TomTom Lane2007-09-231-9/+30
* Fix map_sql_typecoll_to_xmlschema_types() to not fail on droppedTom Lane2007-07-131-30/+21
* Compute max and min int8 values using unsigned arithmetic, in hopes ofTom Lane2007-07-121-3/+3