summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-02-15Allow AS to be omitted when specifying an output column name in SELECTTom Lane
2008-02-15Remove ancient restriction that LIMIT/OFFSET can't contain a sub-select.Tom Lane
2008-02-14Sync our regex code with upstream changes since last time we did this, whichTom Lane
2008-02-12Fix SPI_cursor_open() and SPI_is_cursor_plan() to push the SPI stack beforeTom Lane
2008-02-11Repair VACUUM FULL bug introduced by HOT patch: the original way ofTom Lane
2008-02-10Fix PageGetExactFreeSpace() so that it actually behaves sensiblyTom Lane
2008-02-08Since GSSAPI and SSPI authentication don't work in protocol version 2,Tom Lane
2008-02-07Avoid misbehavior in foreign key checks when casting to a datatype for whichTom Lane
2008-02-07Some variants of ALTER OWNER tried to make the "object" field of theTom Lane
2008-02-07Add missing copyfuncs/equalfuncs support for AlterTSDictionaryStmt andTom Lane
2008-02-07Fix silly mistake in expand_indexqual_rowcompare --- in converting a forboth()Tom Lane
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-02-02Fix WaitOnLock() to ensure that the process's "waiting" flag is reset afterTom Lane
2008-01-31Translation updatesPeter Eisentraut
2008-01-31Add pid to the pgident event name on win32.Magnus Hagander
2008-01-30Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane
2008-01-30Add a GUC variable "synchronize_seqscans" to allow clients to disable the newTom Lane
2008-01-30Translation updatesPeter Eisentraut
2008-01-30Don't putenv() a string that is allocated in a context that will go awayTom Lane
2008-01-27Minor editorial improvements in documentation of session_replication_role;Tom Lane
2008-01-26Change StatementCancelHandler() to check the DoingCommandRead flag to decideTom Lane
2008-01-25Fix two different copy-and-paste-os in CSV log rotation logic; one that led toTom Lane
2008-01-25Release any detoasted copies of arrays that are made temporarily inTom Lane
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