summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2010-02-02CLUSTER specified the wrong namespace when renaming toast tables of temporaryTom Lane
2010-01-24Fix assorted core dumps and Assert failures that could occur duringTom Lane
2009-12-29Previous fix for temporary file management broke returning a set fromHeikki Linnakangas
2009-12-23Always pass catalog id to the options validator function specified inHeikki Linnakangas
2009-12-09Prevent indirect security attacks via changing session-local state withinTom Lane
2009-11-10Fix longstanding problems in VACUUM caused by untimely interruptionsAlvaro Herrera
2009-10-27Fix AfterTriggerSaveEvent to use a test and elog, not just Assert, to checkTom Lane
2009-10-07Fix snapshot management, take two.Alvaro Herrera
2009-10-06Change CREATE TABLE so that column default expressions coming from differentTom Lane
2009-10-02Ensure that a cursor has an immutable snapshot throughout its lifespan.Alvaro Herrera
2009-09-03Disallow RESET ROLE and RESET SESSION AUTHORIZATION inside security-definerTom Lane
2009-08-24Fix a violation of WAL coding rules in the recent patch to include anTom Lane
2009-08-12Fix old bug in log_autovacuum_min_duration code: it was relying on being ableTom Lane
2009-08-07Fix some omissions in the dependency-object-class support for SQL/MED objects.Tom Lane
2009-06-18Fix the just-reported problem that you can't specify all four trigger eventTom Lane
2009-06-11Revisit AlterTableCreateToastTable's API once again, hoping to make it whatTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-06-06Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane
2009-06-03Improve comment about 'if (1)' hack in copy.c macros.Tom Lane
2009-06-03Add comment about why "((void) 0)" is used in copy macros.Bruce Momjian
2009-05-29Change macros to make gcc quiet when parsing.Michael Meskes
2009-05-20Silence a gcc compiler warning about non-literal format string with no argsHeikki Linnakangas
2009-05-19Update relpages and reltuples estimates in stand-alone ANALYZE, even ifHeikki Linnakangas
2009-05-12Fix LOCK TABLE to eliminate the race condition that could make it give weirdTom Lane
2009-05-12Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-05-07Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane
2009-05-06Modify CREATE DATABASE to enforce that the source database's encoding settingTom Lane
2009-05-05Tweak a comment to agree a bit better with the new dispensation thatTom Lane
2009-05-05Avoid integer overflow in the loop that extracts histogram entries fromTom Lane
2009-04-23Don't use the result of strcmp as if it were a boolean.Tom Lane
2009-04-19Fix de-escaping checks so that we will reject \000 as well as other invalidlyTom Lane
2009-04-15Add missing periods.Alvaro Herrera
2009-04-06Rename the new CREATE DATABASE options to set collation and ctype intoHeikki Linnakangas
2009-04-05Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane
2009-04-04Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane
2009-04-04A session that does not have any live snapshots does not have to be waited forTom Lane
2009-03-31Modify the relcache to record the temp status of both local and nonlocalTom Lane
2009-03-26Adjust phrasing of complaints about multi-byte COPY delimiter strings.Tom Lane
2009-03-24Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane
2009-03-04Add some sanity checks to CREATE CAST ... WITHOUT FUNCTION. DisallowHeikki Linnakangas
2009-02-27In CREATE CONVERSION, test that the given function is a valid conversionHeikki Linnakangas
2009-02-24Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut
2009-02-24Repair a longstanding bug in CLUSTER and the rewriting variants of ALTERTom Lane
2009-02-13Fix UNLISTEN to fall out quickly if the current backend has never executedTom Lane
2009-02-11Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physicallyTom Lane
2009-02-06Clean up some loose ends from the column privileges patch: addTom Lane
2009-02-02Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera
2009-01-30Check that connection limit is within valid range. IOW, not < -1.Heikki Linnakangas
2009-01-27Revert updatable viewsPeter Eisentraut