summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/xml.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane2007-06-061-2/+2
* XPath fixes:Peter Eisentraut2007-05-211-94/+111
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-3/+3
* Update XML error message text for missing libxml; update regressionBruce Momjian2007-04-051-2/+4
* Improve documentation/warning when --with-libxml is not used in theBruce Momjian2007-04-051-2/+2
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-3/+3
* Mapping schemas and databases to XML and XML Schema.Peter Eisentraut2007-04-011-82/+627
* Commit newest version of xmlpath().Bruce Momjian2007-03-221-13/+24
* Add xmlpath() to evaluate XPath expressions, with namespaces support.Bruce Momjian2007-03-221-2/+249
* Make use of plancache module for SPI plans. In particular, since plpgsqlTom Lane2007-03-151-3/+3
* Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway2007-03-031-5/+3
* Fix date/time formats for XML Schema output.Peter Eisentraut2007-03-011-9/+80
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-271-7/+7
* Better fix for determining minimum and maximum int64 values that doesn'tPeter Eisentraut2007-02-161-6/+3
* Add stdint.h includePeter Eisentraut2007-02-161-1/+5
* Functions for mapping table data and table schemas to XML (a.k.a. XML export)Peter Eisentraut2007-02-161-3/+785
* Un-break build on ANSI compilers (like msvc) by moving Assert to positionMagnus Hagander2007-02-131-5/+5
* Add support for optionally escaping periods when converting SQL identifiersPeter Eisentraut2007-02-111-2/+10
* Add proper mapping of boolean type data to XML Schema.Peter Eisentraut2007-02-101-1/+9
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-031-10/+32