summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2005-02-20Add code to prevent transaction ID wraparound by enforcing a safe limitTom Lane
2005-02-15Update comment on VACUUM FULL.Bruce Momjian
2005-02-14ALTER LANGUAGE RENAME has never worked. Per Sergey Yatskevich.Tom Lane
2005-02-11Fix ANALYZE to accumulate some minimal statistics for an all-null column.Tom Lane
2005-02-09ALTER TABLE ADD COLUMN exhibits a significant memory leak when adding aNeil Conway
2005-02-06Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns outTom Lane
2005-02-02Add support for temporary views, including documentation and regressionNeil Conway
2005-01-27Change heap_modifytuple() to require a TupleDesc rather than aNeil Conway
2005-01-27Generalize TRUNCATE to support truncating multiple tables in oneTom Lane
2005-01-24Fix ALTER TABLE ADD COLUMN so that constraints of domain types areTom Lane
2005-01-10Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane
2005-01-01Update copyrights that were missed.Bruce Momjian
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-12-23Avoid memory leakage during VACUUM FULL when an index expression orTom Lane
2004-12-12PREPARE and EXPLAIN need to copy the source query just like we recentlyTom Lane
2004-12-06ActiveSnapshot must be set to something valid while running deferredTom Lane
2004-12-03Use StrNCpy not strncpy to fill hash key, to ensure the resulting keyTom Lane
2004-12-03> If it bothers you that much. I'd make a flag, cleared at the start ofBruce Momjian
2004-12-02Disallow the combination VACUUM FULL FREEZE for safety's sake, for theTom Lane
2004-12-01Change planner to use the current true disk file size as its estimate ofTom Lane
2004-11-28Avoid scribbling on original parsetree during DECLARE CURSOR. ThisTom Lane
2004-11-18Force pg_database updates out to disk immediately after ALTER DATABASE;Tom Lane
2004-11-16Prevent a backend crash when processing CREATE TABLE commands withNeil Conway
2004-11-14There is no need for ReadBuffer() call sites to check that the returnedNeil Conway
2004-11-06When implementing a coercion to a domain type with a combinedTom Lane
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-11-05Small message clarificationsPeter Eisentraut
2004-10-30I found a corner case in which it is possible for RI_FKey_check's callTom Lane
2004-10-29Fix failure to think clearly about encoding conversion errors in COPY.Tom Lane
2004-10-28On Windows, force a checkpoint just before dropping a database's physicalTom Lane
2004-10-26Make heap_fetch API more consistent by having the buffer remain pinnedTom Lane
2004-10-25In the new dispensation where REINDEX doesn't take exclusive lock onTom Lane
2004-10-25Modify hash_create() to elog(ERROR) if an error occurs, rather thanNeil Conway
2004-10-22In ALTER COLUMN TYPE, strip any implicit coercion operations appearingTom Lane
2004-10-21Disallow referential integrity actions from being deferred; only theTom Lane
2004-10-17Give a more user-friendly error message in situation where CREATE DATABASETom Lane
2004-10-16Give a more user-friendly error message in case where a table is createdTom Lane
2004-10-15Repair possible failure to update hint bits back to disk, perTom Lane
2004-10-12Message style revisionsPeter Eisentraut
2004-10-07Adjust comments previously moved to column 1 by pgident.Bruce Momjian
2004-10-07Back out unindented modification to file.Bruce Momjian
2004-10-07Indent comment pushed to new line by else so it is indented by BSDBruce Momjian
2004-09-30Adjust index locking rules as per my proposal of earlier today. YouTom Lane
2004-09-30Remove unnecessary use of index_open just to get the index name.Tom Lane
2004-09-27Code cleanup: don't bother casting the argument to pfree() to void *Neil Conway
2004-09-24GUC assign hooks that look at external state in deciding whether aTom Lane
2004-09-23Fix ALTER TABLE OWNER to adjust the ownership of dependent sequences,Tom Lane
2004-09-16Restructure subtransaction handling to reduce resource consumption,Tom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-09-11Renumber SnapshotNow and the other special snapshot codes so thatTom Lane