| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix encoding handling in xml binary input function. If the XML header didn't | Heikki Linnakangas | 2009-09-04 | 1 | -14/+21 |
| * | Extend EXPLAIN to support output in XML or JSON format. | Tom Lane | 2009-08-10 | 1 | -27/+40 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 1 | -162/+160 |
| * | Ensure xmlFree(NULL) is a no-op instead of a core dump. Per report from | Tom Lane | 2009-06-10 | 1 | -2/+4 |
| * | Fix xmlattribute escaping XML special characters twice (bug #4822). | Peter Eisentraut | 2009-06-09 | 1 | -8/+17 |
| * | Fix map_sql_table_to_xmlschema() with dropped attributes. | Peter Eisentraut | 2009-06-08 | 1 | -1/+5 |
| * | Rewrite xml.c's memory management (yet again). Give up on the idea of | Tom Lane | 2009-05-13 | 1 | -104/+177 |
| * | Fix intratransaction memory leaks in xml_recv, xmlconcat, xmlroot, and | Tom Lane | 2009-05-12 | 1 | -12/+28 |
| * | XMLATTRIBUTES() should send the attribute values through | Peter Eisentraut | 2009-04-08 | 1 | -5/+2 |
| * | Add an errdetail explaining why we reject infinite dates and timestamps | Tom Lane | 2009-03-27 | 1 | -4/+7 |
| * | Remove munging of xml and xpath params to xpath(). The XML must now be a well... | Andrew Dunstan | 2009-03-23 | 1 | -38/+11 |
| * | Fix executor/spi.h to follow our usual conventions for include files, ie, | Tom Lane | 2009-01-07 | 1 | -1/+2 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 1 | -2/+2 |
| * | Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuring | Tom Lane | 2008-11-10 | 1 | -7/+18 |
| * | Unicode escapes in strings and identifiers | Peter Eisentraut | 2008-10-29 | 1 | -23/+2 |
| * | Extend the date type to support infinity and -infinity, analogously to | Tom Lane | 2008-10-14 | 1 | -1/+6 |
| * | Fix crash in bytea-to-XML mapping when the source value is toasted. | Tom Lane | 2008-10-09 | 1 | -34/+47 |
| * | Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin. | Tom Lane | 2008-09-16 | 1 | -10/+8 |
| * | Move exprType(), exprTypmod(), expression_tree_walker(), and related routines | Tom Lane | 2008-08-25 | 1 | -2/+2 |
| * | Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin, | Tom Lane | 2008-07-03 | 1 | -1/+2 |
| * | 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 |