aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/xml.c
Commit message (Expand)AuthorAge
* Replace errdetail("%s", ...) with errdetail_internal("%s", ...).Tom Lane2011-07-16
* Fix null-dereference crash in parse_xml_decl().Tom Lane2011-05-28
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-10
* Stamp copyrights for year 2011.Bruce Momjian2011-01-01
* Remove useless whitespace at end of linesPeter Eisentraut2010-11-23
* Improve handling of domains over arrays.Tom Lane2010-10-21
* Change references to SQL/XML:2003 to :2008 and renumber sections accordinglyPeter Eisentraut2010-10-15
* Remove cvs keywords from all files.Magnus Hagander2010-09-20
* Add xml_is_well_formed, xml_is_well_formed_document, xml_is_well_formed_contentTom Lane2010-08-13
* Add an xpath_exists() function. This is equivalent to XMLEXISTS except thatTom Lane2010-08-08
* Add xmlexists functionPeter Eisentraut2010-08-05
* pgindent run for 9.0, second runBruce Momjian2010-07-06
* Export xml.c's libxml-error-handling support so that contrib/xml2 can use itTom Lane2010-03-03
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-14
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Fix encoding handling in xml binary input function. If the XML header didn'tHeikki Linnakangas2009-09-04
* Extend EXPLAIN to support output in XML or JSON format.Tom Lane2009-08-10
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-11
* Ensure xmlFree(NULL) is a no-op instead of a core dump. Per report fromTom Lane2009-06-10
* Fix xmlattribute escaping XML special characters twice (bug #4822).Peter Eisentraut2009-06-09
* Fix map_sql_table_to_xmlschema() with dropped attributes.Peter Eisentraut2009-06-08
* Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane2009-05-13
* Fix intratransaction memory leaks in xml_recv, xmlconcat, xmlroot, andTom Lane2009-05-12
* XMLATTRIBUTES() should send the attribute values throughPeter Eisentraut2009-04-08
* Add an errdetail explaining why we reject infinite dates and timestampsTom Lane2009-03-27
* Remove munging of xml and xpath params to xpath(). The XML must now be a well...Andrew Dunstan2009-03-23
* Fix executor/spi.h to follow our usual conventions for include files, ie,Tom Lane2009-01-07
* Update copyright for 2009.Bruce Momjian2009-01-01
* Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane2008-11-10
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-29
* Extend the date type to support infinity and -infinity, analogously toTom Lane2008-10-14
* Fix crash in bytea-to-XML mapping when the source value is toasted.Tom Lane2008-10-09
* Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin.Tom Lane2008-09-16
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin,Tom Lane2008-07-03
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12
* Use new cstring/text conversion functions in some additional places.Tom Lane2008-05-04
* Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander2008-04-04
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-25
* Fix various infelicities that have snuck into usage of errdetail() andTom Lane2008-03-24
* Disable the undocumented xmlvalidate() function, which was unintentionallyTom Lane2008-03-01
* Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane2008-01-15
* It turns out the LIBXML_TEST_VERSION macro calls xmlInitParser().Tom Lane2008-01-12
* Fix two places in xml.c that neglected to check the return values ofNeil Conway2008-01-12
* Minor perf tweak for _SPI_strdup(): if we're going to call strlen()Neil Conway2008-01-12
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Fix XML Schema structure for char types without length (bug #3782)Peter Eisentraut2007-11-28
* Suppress compiler warning.Tom Lane2007-11-27
* Make casts from xml to text independent of the XML option setting, thusPeter Eisentraut2007-11-27
* Use double quotes for quoting xml attributes.Peter Eisentraut2007-11-25