aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/dbcommands.c
Commit message (Expand)AuthorAge
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-03
* Support an optional asynchronous commit mode, in which we don't flush WALTom Lane2007-08-01
* Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane2007-06-28
* Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane2007-06-01
* Cancel pending fsync requests during WAL replay of DROP DATABASE, per bugTom Lane2007-04-12
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Call pgstat_drop_database during DROP DATABASE, so that any stats fileTom Lane2007-02-09
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-01
* Extend yesterday's patch so that the bgwriter is also told to forgetTom Lane2007-01-17
* Arrange for autovacuum to be killed when another operation wants to be aloneAlvaro Herrera2007-01-16
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-05
* Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane2006-10-18
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-14
* Allow include files to compile own their own.Bruce Momjian2006-07-13
* Improve vacuum code to track minimum Xids per table instead of per database.Alvaro Herrera2006-07-10
* Rethink the locking mechanisms used for CREATE/DROP/RENAME DATABASE.Tom Lane2006-05-04
* Create a syscache for pg_database-indexed-by-oid, and make use of itTom Lane2006-05-03
* Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane2006-03-29
* Arrange to emit a description of the current XLOG record as error contextTom Lane2006-03-24
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-05
* I've created a new shared catalog table pg_shdescription to storeBruce Momjian2006-02-12
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-22
* DROP DATABASE IF EXISTS variantAndrew Dunstan2005-11-22
* Standard pgindent run for 8.1.Bruce Momjian2005-10-15
* Use a safer order of operations in dropdb(): rollbackable operations,Tom Lane2005-10-10
* Fix unwanted denial of ALTER OWNER rights to superusers. There was someTom Lane2005-08-22
* Solve the problem of OID collisions by probing for duplicate OIDsTom Lane2005-08-12
* Clean up CREATE DATABASE processing to make it more robust and get ridTom Lane2005-08-02
* Add per-user and per-database connection limit options.Tom Lane2005-07-31
* Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane2005-07-14
* Remove some dead code for handling XLOG_DBASE_CREATE_OLD andNeil Conway2005-07-08
* Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane2005-07-07
* Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane2005-06-30
* More cleanup on roles patch. Allow admin option to be inherited throughTom Lane2005-06-29
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-28
* Force a checkpoint before committing a CREATE DATABASE command. ThisTom Lane2005-06-25
* Cause initdb to create a third standard database "postgres", whichTom Lane2005-06-21
* Modify XLogInsert API to make callers specify whether pages to be backedTom Lane2005-06-06
* Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane2005-06-06
* Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane2005-05-19
* Completion of project to use fixed OIDs for all system catalogs andTom Lane2005-04-14
* WAL must log CREATE and DROP DATABASE operations *without* using anyTom Lane2005-03-23
* When cloning template0 (or other fully-frozen databases), set the newTom Lane2005-03-12
* Fix ALTER DATABASE RENAME to allow the operation if user is a superuserTom Lane2005-03-12
* Replace the BufMgrLock with separate locks on the lookup hashtable andTom Lane2005-03-04
* Finish up the flat-files project: get rid of GetRawDatabaseInfo() hackTom Lane2005-02-26
* Add code to prevent transaction ID wraparound by enforcing a safe limitTom Lane2005-02-20
* Change heap_modifytuple() to require a TupleDesc rather than aNeil Conway2005-01-27