summaryrefslogtreecommitdiff
path: root/src/include/commands
AgeCommit message (Expand)Author
2005-10-06Minor API cleanup for async notifications: we can only register theNeil Conway
2005-10-03Separate out the VacRUsage stuff as an independent module, in preparationTom Lane
2005-10-02Change nextval and other sequence functions to specify their sequenceTom Lane
2005-09-08Create the pg_pltemplate system catalog to hold template informationTom Lane
2005-08-23Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane
2005-08-04ALTER TABLE OWNER must change the ownership of the table's rowtype too.Tom Lane
2005-08-01Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-25Add SET ROLE. This is a partial commit of Stephen Frost's recent patch;Tom Lane
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-08Remove some dead code for handling XLOG_DBASE_CREATE_OLD andNeil Conway
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-22Make REINDEX DATABASE do what one would expect, namely reindex all indexesTom Lane
2005-06-22Fix the mechanism for reporting the original table OID and column numberTom Lane
2005-06-17Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane
2005-06-07Add a function lastval(), which returns the value returned by theNeil Conway
2005-06-06Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-10Report index name on CLUSTER failure. Also, suggest ALTER TABLEBruce Momjian
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
2005-03-25Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane
2005-03-23WAL must log CREATE and DROP DATABASE operations *without* using anyTom Lane
2005-03-14Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway
2005-02-20Add code to prevent transaction ID wraparound by enforcing a safe limitTom Lane
2005-02-02Add support for temporary views, including documentation and regressionNeil Conway
2005-01-27Generalize TRUNCATE to support truncating multiple tables in oneTom Lane
2005-01-01Update copyrights that were missed.Bruce Momjian
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-10-30I found a corner case in which it is possible for RI_FKey_check's callTom Lane
2004-10-17Give a more user-friendly error message in situation where CREATE DATABASETom Lane
2004-09-30Adjust index locking rules as per my proposal of earlier today. YouTom Lane
2004-09-16Restructure subtransaction handling to reduce resource consumption,Tom Lane
2004-09-10Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane
2004-08-30Another pgindent run with lib typedefs added.Bruce Momjian
2004-08-29Add WAL logging for CREATE/DROP DATABASE and CREATE/DROP TABLESPACE.Tom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-17Add DLLIMPORT for PostGIS.Bruce Momjian
2004-08-02Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane
2004-07-28Fix subtransaction behavior for large objects, temp namespace, files,Tom Lane
2004-07-17Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane
2004-07-11ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane
2004-07-11Move TablespaceCreateDbspace() call into smgrcreate(), which is where itTom Lane
2004-07-01Nested transactions. There is still much left to do, especially on theTom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-10Clean up generation of default names for constraints, indexes, and serialTom Lane
2004-06-03Adjust our timezone library to use pg_time_t (typedef'd as int64) inTom Lane