summaryrefslogtreecommitdiff
path: root/src/backend/commands/dbcommands.c
AgeCommit message (Expand)Author
2008-09-30Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas
2008-09-23Tighten the check in initdb and CREATE DATABASE that the chosen encodingHeikki Linnakangas
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-08-04Improve CREATE/DROP/RENAME DATABASE so that when failing because the sourceTom Lane
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro 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-16Repair two places where SIGTERM exit could leave shared memory stateTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-10-16Re-allow UTF8 encodings on win32. Since UTF8 is converted toMagnus Hagander
2007-10-13Fix the inadvertent libpq ABI breakage discovered by Martin Pitt: theTom Lane
2007-10-12Remove hack in pg_tablespace_aclmask() that disallowed permissionsTom Lane
2007-09-28Change initdb and CREATE DATABASE to actively reject attempts to createTom Lane
2007-09-03Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane
2007-08-01Support an optional asynchronous commit mode, in which we don't flush WALTom Lane
2007-06-28Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane
2007-06-01Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane
2007-04-12Cancel pending fsync requests during WAL replay of DROP DATABASE, per bugTom Lane
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-02-09Call pgstat_drop_database during DROP DATABASE, so that any stats fileTom Lane
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-17Extend yesterday's patch so that the bgwriter is also told to forgetTom Lane
2007-01-16Arrange for autovacuum to be killed when another operation wants to be aloneAlvaro Herrera
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-11-05Fix recently-understood problems with handling of XID freezing, particularlyTom Lane
2006-10-18Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-10Improve vacuum code to track minimum Xids per table instead of per database.Alvaro Herrera
2006-05-04Rethink the locking mechanisms used for CREATE/DROP/RENAME DATABASE.Tom Lane
2006-05-03Create a syscache for pg_database-indexed-by-oid, and make use of itTom Lane
2006-03-29Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane
2006-03-24Arrange to emit a description of the current XLOG record as error contextTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-12I've created a new shared catalog table pg_shdescription to storeBruce Momjian
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-10Use a safer order of operations in dropdb(): rollbackable operations,Tom Lane
2005-08-22Fix unwanted denial of ALTER OWNER rights to superusers. There was someTom Lane
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-02Clean up CREATE DATABASE processing to make it more robust and get ridTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-14Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane
2005-07-08Remove some dead code for handling XLOG_DBASE_CREATE_OLD andNeil Conway
2005-07-07Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane
2005-06-30Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane