summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2005-05-07Repair very-low-probability race condition between relation extensionTom Lane
2005-05-03Alter the signature for encoding conversion functions to declare theTom Lane
2004-11-18Back-patch fix for ALTER DATABASE failing to flush pg_database changesTom Lane
2003-07-17For COMMENT ON DATABASE where database name is unknown or not the currentTom Lane
2003-06-06Add defense in assign_session_authorization() against trying to doTom Lane
2003-05-19Back-patch change to avoid O(N^2) behavior with lots of deferred triggers,Tom Lane
2003-04-25Back-patch fixes for zero-column tables in COPY, pg_dump.Tom Lane
2003-04-25Make [VACUUM] ANALYZE safe on zero-column tables.Tom Lane
2003-04-21Prevent palloc(0) error when parent table has zero columns.Tom Lane
2003-03-27GetTupleForTrigger must use outer transaction's command counter for timeTom Lane
2003-03-03Prevent clustering on incomplete indexes: partial indexes are verboten,Tom Lane
2003-02-18Async_NotifyHandler must save and restore ImmediateInterruptOK. FixesTom Lane
2003-02-01Remove restriction that cast functions cannot be volatile. ThisTom Lane
2003-02-01Fix assign_session_authorization() to not be confused by all-numericTom Lane
2003-01-23Fix obsolete error message (isImmutable doesn't exist).Tom Lane
2002-12-16Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane
2002-12-12Back-patch fix to prevent core dump in EXPLAIN if optimizer hasTom Lane
2002-12-06Explain's code for showing quals of SubqueryScan nodes has been brokenTom Lane
2002-12-02Repair core dump when trying to delete an entry from an already-NULLTom Lane
2002-12-01Repair coredump in COPY OUT when client encoding is different fromTom Lane
2002-11-02Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane
2002-11-02During swap_relfilenodes, swap relation size statistic fields along withTom Lane
2002-11-02Remove encoding lookups from grammar stage, push them back to placesTom Lane
2002-11-02Fix permissions-checking bugs and namespace-search-path bugs inTom Lane
2002-11-01Reduce messages associated with shell-type function arguments/resultsTom Lane
2002-10-31Fix miscalculation of remaining free space during tuple chain moving.Tom Lane
2002-10-21Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane
2002-10-21Fix ALTER TABLE ... ADD COLUMN for inheritance cases.Bruce Momjian
2002-10-21Avoid using IsTransactionBlock() in DeferredTriggerSetState(); no realTom Lane
2002-10-21Make CREATE/ALTER/DROP USER/GROUP transaction-safe, or at least prettyTom Lane
2002-10-19Invert logic in pg_exec_query_string() so that we set a snapshot forTom Lane
2002-10-19Back out Alvaro's patch until regression tests pass.Bruce Momjian
2002-10-19Fix compile failure caused by new patch.Bruce Momjian
2002-10-19> Huh, I don't know where I got the idea you were (or someone else was?)Bruce Momjian
2002-10-19Add missing #include <errno.h>.Tom Lane
2002-10-14Arrange to copy relcache's trigdesc structure at the start of anyTom Lane
2002-10-14As Niel so nicely pointed out this morning, the output of EXPLAINBruce Momjian
2002-10-09Lock on the rule relation wasn't removed after adding the comment.Bruce Momjian
2002-10-04Restrict CREATE OPERATOR CLASS to superusers, per discussion some weeksTom Lane
2002-10-04Require superuser privilege to create a binary-compatible cast, perTom Lane
2002-10-03Hack to make it possible to load CREATE CONSTRAINT TRIGGER commands thatTom Lane
2002-09-28Make the world at least somewhat safe for zero-column tables, andTom Lane
2002-09-27ARGH!Tom Lane
2002-09-23Further thinking about heap_mark4update: in HeapTupleSelfUpdated case,Tom Lane
2002-09-23Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to otherTom Lane
2002-09-23Get rid of bogus use of heap_mark4update in reindex operations (cf.Tom Lane
2002-09-22Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane
2002-09-22Move most of the error checking for foreign-key constraints out ofTom Lane
2002-09-21Provide an upgrade strategy for dump files containing functions declaredTom Lane
2002-09-20Performance improvement for MultiRecordFreeSpace on large relations ---Tom Lane