summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/xml.c
AgeCommit message (Expand)Author
2011-09-11Remove many -Wcast-qual warningsPeter Eisentraut
2011-07-26Check to see whether libxml2 handles error context the way we expect.Tom Lane
2011-07-21Make xpath() do something useful with XPath expressions that return scalars.Tom Lane
2011-07-20Ensure that xpath() escapes special characters in string values.Tom Lane
2011-07-20Rewrite libxml error handling to be more robust.Tom Lane
2011-07-16Replace errdetail("%s", ...) with errdetail_internal("%s", ...).Tom Lane
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-05-28Fix null-dereference crash in parse_xml_decl().Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-11-23Remove useless whitespace at end of linesPeter Eisentraut
2010-10-21Improve handling of domains over arrays.Tom Lane
2010-10-15Change references to SQL/XML:2003 to :2008 and renumber sections accordinglyPeter Eisentraut
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-08-13Add xml_is_well_formed, xml_is_well_formed_document, xml_is_well_formed_contentTom Lane
2010-08-08Add an xpath_exists() function. This is equivalent to XMLEXISTS except thatTom Lane
2010-08-05Add xmlexists functionPeter Eisentraut
2010-07-06pgindent run for 9.0, second runBruce Momjian
2010-03-03Export xml.c's libxml-error-handling support so that contrib/xml2 can use itTom Lane
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-09-04Fix encoding handling in xml binary input function. If the XML header didn'tHeikki Linnakangas
2009-08-10Extend EXPLAIN to support output in XML or JSON format.Tom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-06-10Ensure xmlFree(NULL) is a no-op instead of a core dump. Per report fromTom Lane
2009-06-09Fix xmlattribute escaping XML special characters twice (bug #4822).Peter Eisentraut
2009-06-08Fix map_sql_table_to_xmlschema() with dropped attributes.Peter Eisentraut
2009-05-13Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane
2009-05-12Fix intratransaction memory leaks in xml_recv, xmlconcat, xmlroot, andTom Lane
2009-04-08XMLATTRIBUTES() should send the attribute values throughPeter Eisentraut
2009-03-27Add an errdetail explaining why we reject infinite dates and timestampsTom Lane
2009-03-23Remove munging of xml and xpath params to xpath(). The XML must now be a well...Andrew Dunstan
2009-01-07Fix executor/spi.h to follow our usual conventions for include files, ie,Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-11-10Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane
2008-10-29Unicode escapes in strings and identifiersPeter Eisentraut
2008-10-14Extend the date type to support infinity and -infinity, analogously toTom Lane
2008-10-09Fix crash in bytea-to-XML mapping when the source value is toasted.Tom Lane
2008-09-16Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin.Tom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-07-03Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin,Tom Lane
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-05-04Use new cstring/text conversion functions in some additional places.Tom Lane
2008-04-04Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-24Fix various infelicities that have snuck into usage of errdetail() andTom Lane
2008-03-01Disable the undocumented xmlvalidate() function, which was unintentionallyTom Lane
2008-01-15Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane
2008-01-12It turns out the LIBXML_TEST_VERSION macro calls xmlInitParser().Tom Lane
2008-01-12Fix two places in xml.c that neglected to check the return values ofNeil Conway