| Commit message (Expand) | Author | Age | Files | Lines |
* | Restructure some header files a bit, in particular heapam.h, by removing some | Alvaro Herrera | 2008-05-12 | 1 | -2/+1 |
* | Use new cstring/text conversion functions in some additional places. | Tom Lane | 2008-05-04 | 1 | -55/+11 |
* | Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary and | Magnus Hagander | 2008-04-04 | 1 | -3/+3 |
* | Simplify and standardize conversions between TEXT datums and ordinary C | Tom Lane | 2008-03-25 | 1 | -37/+41 |
* | Fix various infelicities that have snuck into usage of errdetail() and | Tom Lane | 2008-03-24 | 1 | -8/+8 |
* | Disable the undocumented xmlvalidate() function, which was unintentionally | Tom Lane | 2008-03-01 | 1 | -60/+9 |
* | Revise memory management for libxml calls. Instead of keeping libxml's data | Tom Lane | 2008-01-15 | 1 | -253/+243 |
* | It turns out the LIBXML_TEST_VERSION macro calls xmlInitParser(). | Tom Lane | 2008-01-12 | 1 | -1/+4 |
* | Fix two places in xml.c that neglected to check the return values of | Neil Conway | 2008-01-12 | 1 | -5/+15 |
* | Minor perf tweak for _SPI_strdup(): if we're going to call strlen() | Neil Conway | 2008-01-12 | 1 | -3/+4 |
* | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 1 | -2/+2 |
* | Fix XML Schema structure for char types without length (bug #3782) | Peter Eisentraut | 2007-11-28 | 1 | -4/+7 |
* | Suppress compiler warning. | Tom Lane | 2007-11-27 | 1 | -2/+2 |
* | Make casts from xml to text independent of the XML option setting, thus | Peter Eisentraut | 2007-11-27 | 1 | -2/+3 |
* | Use double quotes for quoting xml attributes. | Peter Eisentraut | 2007-11-25 | 1 | -3/+3 |
* | Fix bogus length calculation that could lead to crash if the string | Tom Lane | 2007-11-20 | 1 | -13/+19 |
* | Re-run pgindent with updated list of typedefs. (Updated README should | Bruce Momjian | 2007-11-15 | 1 | -6/+6 |
* | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 1 | -424/+425 |
* | Add missing closing / in xsd:restriction, and remove some unnecessary | Tom Lane | 2007-11-10 | 1 | -5/+5 |
* | xmlGetUTF8Char()'s second argument is both input and output. Fix | Tom Lane | 2007-11-10 | 1 | -5/+9 |
* | Allow XML processing instructions starting with "xml" while prohibiting | Peter Eisentraut | 2007-11-09 | 1 | -3/+16 |
* | After conferencing again with Bruce, put in more accurate XML error message. | Peter Eisentraut | 2007-11-08 | 1 | -2/+2 |
* | Improve error message | Peter Eisentraut | 2007-11-08 | 1 | -3/+3 |
* | Some code review for xml.c: | Tom Lane | 2007-11-06 | 1 | -207/+314 |
* | Fix xmlelement() to initialize libxml correctly before using it, and to avoid | Tom Lane | 2007-11-05 | 1 | -55/+120 |
* | Guard against possible double free during error escape from XML | Tom Lane | 2007-10-13 | 1 | -4/+14 |
* | Fix the inadvertent libpq ABI breakage discovered by Martin Pitt: the | Tom Lane | 2007-10-13 | 1 | -5/+25 |
* | Fix bugs in XML binary I/O functions. Heikki and Tom | Tom Lane | 2007-09-23 | 1 | -9/+30 |
* | Fix map_sql_typecoll_to_xmlschema_types() to not fail on dropped | Tom Lane | 2007-07-13 | 1 | -30/+21 |
* | Compute max and min int8 values using unsigned arithmetic, in hopes of | Tom Lane | 2007-07-12 | 1 | -3/+3 |
* | Fix up text concatenation so that it accepts all the reasonable cases that | Tom Lane | 2007-06-06 | 1 | -2/+2 |
* | XPath fixes: | Peter Eisentraut | 2007-05-21 | 1 | -94/+111 |
* | Support varlena fields with single-byte headers and unaligned storage. | Tom Lane | 2007-04-06 | 1 | -3/+3 |
* | Update XML error message text for missing libxml; update regression | Bruce Momjian | 2007-04-05 | 1 | -2/+4 |
* | Improve documentation/warning when --with-libxml is not used in the | Bruce Momjian | 2007-04-05 | 1 | -2/+2 |
* | Support enum data types. Along the way, use macros for the values of | Tom Lane | 2007-04-02 | 1 | -3/+3 |
* | Mapping schemas and databases to XML and XML Schema. | Peter Eisentraut | 2007-04-01 | 1 | -82/+627 |
* | Commit newest version of xmlpath(). | Bruce Momjian | 2007-03-22 | 1 | -13/+24 |
* | Add xmlpath() to evaluate XPath expressions, with namespaces support. | Bruce Momjian | 2007-03-22 | 1 | -2/+249 |
* | Make use of plancache module for SPI plans. In particular, since plpgsql | Tom Lane | 2007-03-15 | 1 | -3/+3 |
* | Add resetStringInfo(), which clears the content of a StringInfo, and | Neil Conway | 2007-03-03 | 1 | -5/+3 |
* | Fix date/time formats for XML Schema output. | Peter Eisentraut | 2007-03-01 | 1 | -9/+80 |
* | Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len). | Tom Lane | 2007-02-27 | 1 | -7/+7 |
* | Better fix for determining minimum and maximum int64 values that doesn't | Peter Eisentraut | 2007-02-16 | 1 | -6/+3 |
* | Add stdint.h include | Peter Eisentraut | 2007-02-16 | 1 | -1/+5 |
* | Functions for mapping table data and table schemas to XML (a.k.a. XML export) | Peter Eisentraut | 2007-02-16 | 1 | -3/+785 |
* | Un-break build on ANSI compilers (like msvc) by moving Assert to position | Magnus Hagander | 2007-02-13 | 1 | -5/+5 |
* | Add support for optionally escaping periods when converting SQL identifiers | Peter Eisentraut | 2007-02-11 | 1 | -2/+10 |
* | Add proper mapping of boolean type data to XML Schema. | Peter Eisentraut | 2007-02-10 | 1 | -1/+9 |
* | Implement XMLSERIALIZE for real. Analogously, make the xml to text cast | Peter Eisentraut | 2007-02-03 | 1 | -10/+32 |