summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2008-04-24Fix ALTER TABLE ADD COLUMN ... PRIMARY KEY so that the new column is correctlyTom Lane
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-18Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera
2008-04-18Fix rmtree() so that it keeps going after failure to remove any individualTom Lane
2008-04-18Fix two race conditions between the pending unlink mechanism that was put inHeikki Linnakangas
2008-04-18Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane
2008-04-17Add some code to EXPLAIN to show the targetlist (ie, output columns)Tom Lane
2008-04-16Repair two places where SIGTERM exit could leave shared memory stateTom Lane
2008-04-14Push index operator lossiness determination down to GIST/GIN opclassTom Lane
2008-04-13Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane
2008-04-03Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerlyTom Lane
2008-04-02Revert my bad decision of about a year ago to make PortalDefineQueryTom Lane
2008-03-31Fix my brain fade in TRUNCATE triggers patch: can't release relcache refcountsTom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-03-24Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane
2008-03-24Fix various infelicities that have snuck into usage of errdetail() andTom Lane
2008-03-20Add a couple of missing FreeQueryDesc calls. Noticed while testing aAlvaro Herrera
2008-03-19Support ALTER TYPE RENAME. Petr JelinekTom Lane
2008-03-19We no longer need a snapshot set after opening the finishing transaction: thisAlvaro Herrera
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-03-12Fix LISTEN/NOTIFY race condition reported by Laurent Birtz, by postponingTom Lane
2008-03-10Reduce memory consumption during VACUUM of large relations, by usingTom Lane
2008-03-08Improve efficiency of attribute scanning in CopyReadAttributesCSV.Andrew Dunstan
2008-02-20Improve error messages emitted when VACUUM and ANALYZE skip a table.Alvaro Herrera
2008-02-19Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut
2008-02-11Repair VACUUM FULL bug introduced by HOT patch: the original way ofTom Lane
2008-02-07Some variants of ALTER OWNER tried to make the "object" field of theTom Lane
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-01-30Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane
2008-01-17Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane
2008-01-15Prevent CLUSTER from decreasing a relation's relfrozenxid. BugTom Lane
2008-01-09Fix CREATE INDEX CONCURRENTLY to not deadlock against an automatic or manualTom Lane
2008-01-03Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane
2008-01-02Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
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-03Revert COPY OUT to follow the pre-8.3 handling of ASCII control characters,Tom Lane
2007-12-01Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-28Make a cleanup pass over error reports in tsearch code. Use ereportTom Lane