summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-01-23Improve lock level choices in pg_shdepend.c. Noticed by Tom Lane.Alvaro Herrera
2008-01-21Provide a clearer error message if the pg_control version number looksPeter Eisentraut
2008-01-21Fix RS_isRegis() to agree exactly with RS_compile()'s idea of what's a validTom Lane
2008-01-20Split error message.Alvaro Herrera
2008-01-17Fix subselect.c to avoid assuming that a SubLink's testexpr references eachTom Lane
2008-01-17Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane
2008-01-16Fix core dump with buffer-overrun by too long infinitive. Add checking of usingTeodor Sigaev
2008-01-15Prevent CLUSTER from decreasing a relation's relfrozenxid. BugTom Lane
2008-01-15Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane
2008-01-15Tweak new error message to conform to style guidelines.Tom Lane
2008-01-15Add check of headline method presence. Per report by Yoshiyuki Asaba <y-asaba...Teodor Sigaev
2008-01-14Avoid cluttering the postmaster log with bogus complaintsTom Lane
2008-01-14Mark autovacuum entries in pg_stat_activity so that they can be easilyAlvaro Herrera
2008-01-14Fix CREATE INDEX CONCURRENTLY so that it won't use synchronized scan forTom 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
2008-01-12Minor perf tweak for _SPI_strdup(): if we're going to call strlen()Neil Conway
2008-01-12Fix logical errors in constraint exclusion: we cannot assume that a CHECKTom Lane
2008-01-11The original implementation of polymorphic aggregates didn't really get theTom Lane
2008-01-11Fix an old error in clause_selectivity: the default selectivity estimateTom Lane
2008-01-11Fix a conceptual error in my patch of 2007-10-26 that avoided consideringTom Lane
2008-01-11Restructure the shutdown procedure for the archiver process to allow it toTom Lane
2008-01-10vacuum_cost_limit has a minimum value of 1, not zero; updateBruce Momjian
2008-01-09Remove incorrect (and ill-advised anyway) pfree's in pg_convert_from andTom Lane
2008-01-09Fix CREATE INDEX CONCURRENTLY to not deadlock against an automatic or manualTom Lane
2008-01-09Fix some planner issues found while investigating Kevin Grittner's reportTom Lane
2008-01-09Fix an omission in the outfuncs.c support for Agg nodes: the grpColIdxNeil Conway
2008-01-08lmgr.c:DescribeLockTag was never taught about virtual xids, per Greg Stark.Tom Lane
2008-01-08Remove unnecessary comma in enum definition ... some C compilers don'tTom Lane
2008-01-07Fix a minor bug in outfuncs support for SetOp: dupOperators is an arrayNeil Conway
2008-01-06A long time ago, Peter pointed out that ruleutils.c didn't dump simpleTom Lane
2008-01-03Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane
2008-01-03Fix assorted security-grade bugs in the regex engine. All of these problemsTom Lane
2008-01-02Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane
2008-01-02Correct two more copyrights found by updated script.Bruce Momjian
2008-01-01Fix some missed copyright updates.Tom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-31Improve a number of elog messages for not-supposed-to-happen cases in btrees,Tom Lane
2007-12-30Add sanity check to ensure delimiter and quote are different in CSV modeAndrew Dunstan
2007-12-28Improve consistency of error reporting in GUC assign_hook routines. SomeTom Lane
2007-12-27Disallow digits and lower-case ASCII letters as the delimiter in non-CSVTom Lane
2007-12-27Fix ill-advised usage of x?y:z expressions in errmsg() and errhint() calls.Tom Lane
2007-12-27Swap the order of testing for control characters and for column delimiter inTom Lane
2007-12-27Wording improvementsPeter Eisentraut
2007-12-20When given a nonzero column number, pg_get_indexdef() is only supposed toTom Lane
2007-12-18Fix thinko in encoding check for chr()Andrew Dunstan
2007-12-18Make archiver process report its progress in PS display. PerTom Lane
2007-12-18Make path_recv() and poly_recv() reject paths/polygons containing no points.Tom Lane
2007-12-13Clarify log messagesPeter Eisentraut
2007-12-12Clean up unportable attempt to use #if inside a macro call, alsoTom Lane