aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt
Commit message (Expand)AuthorAge
* Fix crash in bytea-to-XML mapping when the source value is toasted.Tom Lane2008-10-09
* Fix improper display of fractional seconds in interval valuesTom Lane2008-10-02
* Compare escaped chars case insensitively for ILIKE - per gripe from TGL.Andrew Dunstan2008-09-27
* Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin.Tom Lane2008-09-16
* Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane2008-09-15
* Fix estimate_num_groups() to assume that GROUP BY expressions yielding booleanTom Lane2008-07-07
* Fix AT TIME ZONE (in all three variants) so that we first try to interpretTom Lane2008-07-07
* Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin,Tom Lane2008-07-03
* Fix unportable (and incorrect anyway) usage of LL constant suffix thatTom Lane2008-06-09
* Fix datetime input functions to correctly detect integer overflow whenTom Lane2008-06-09
* Fix pg_get_ruledef() so that negative numeric constants are parenthesized.Tom Lane2008-06-06
* Backpatch Zdenek Kotala's fix to prevent pglz_decompress from stomping onTom Lane2008-05-28
* Coercion sanity check in ri_HashCompareOp failed to allow for enums, as perTom Lane2008-05-19
* The 8.2 patch that added support for an alias on the target table ofTom Lane2008-05-03
* Fix broken compare function for tsquery_ops. Per Tom's report.Teodor Sigaev2008-04-20
* Fix several datatype input functions that were allowing unused bytes in theirTom Lane2008-04-11
* Fix tsvector_update_trigger() to be domain-friendly: it needs to allow allTom Lane2008-04-08
* Fix a number of places that were making file-type tests infelicitously.Tom Lane2008-03-31
* Fix various infelicities that have snuck into usage of errdetail() andTom Lane2008-03-24
* Fix regexp substring matching (substring(string from pattern)) for the cornerTom Lane2008-03-19
* Fix varstr_cmp's special case for UTF8 encoding on Windows so that stringsTom Lane2008-03-13
* Revert changes of CompareTSQ: it affects existing btree indexes.Teodor Sigaev2008-03-09
* Fix memory arrangement of tsquery after removing stop words. It causesTeodor Sigaev2008-03-07
* Fix unportable usages of tolower(). On signed-char machines, it is necessaryTom Lane2008-03-01
* Disable the undocumented xmlvalidate() function, which was unintentionallyTom Lane2008-03-01
* Fix encode(...bytea..., 'escape') so that it converts all high-bit-set byteTom Lane2008-02-26
* Fix datetime input to behave correctly for Feb 29 in years BC.Tom Lane2008-02-25
* Remove unnecessary opening of other relation in RI_FKey_keyequal_upd_pkTom Lane2008-02-18
* Avoid misbehavior in foreign key checks when casting to a datatype for whichTom Lane2008-02-07
* Release any detoasted copies of arrays that are made temporarily inTom Lane2008-01-25
* 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
* lmgr.c:DescribeLockTag was never taught about virtual xids, per Greg Stark.Tom Lane2008-01-08
* Remove unnecessary comma in enum definition ... some C compilers don'tTom Lane2008-01-08
* A long time ago, Peter pointed out that ruleutils.c didn't dump simpleTom Lane2008-01-06
* Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane2008-01-03
* Fix some missed copyright updates.Tom Lane2008-01-01
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Wording improvementsPeter Eisentraut2007-12-27
* When given a nonzero column number, pg_get_indexdef() is only supposed toTom Lane2007-12-20
* Fix thinko in encoding check for chr()Andrew Dunstan2007-12-18
* Make path_recv() and poly_recv() reject paths/polygons containing no points.Tom Lane2007-12-18
* Fix mergejoin cost estimation so that we consider the statistical ranges ofTom Lane2007-12-08
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* Make a cleanup pass over error reports in tsearch code. Use ereportTom Lane2007-11-28
* Adjust the names of a couple of tsearch index support functions that hadTom Lane2007-11-28
* Fix XML Schema structure for char types without length (bug #3782)Peter Eisentraut2007-11-28
* Suppress compiler warning.Tom Lane2007-11-27