summaryrefslogtreecommitdiff
path: root/src/backend/commands
Commit message (Expand)AuthorAgeFilesLines
* Dept. of further reflection: I looked around to see if any other callersTom Lane2004-08-151-8/+19
* Change order of operations in ALTER TABLE SET TABLESPACE so that weTom Lane2004-08-131-8/+7
* Avoid crashing when restoring a saved GUC session_authorization valueTom Lane2004-08-111-15/+34
* Fixups for Win32 symlinks.Bruce Momjian2004-08-081-1/+10
* Rename vacuum_cost_naptime to vacuum_cost_delay, with agreement from Jan.Bruce Momjian2004-08-061-5/+5
* Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane2004-08-041-2/+2
* Fix silly thinko in ALTER COLUMN TYPE. Check for finding expectedTom Lane2004-08-041-3/+3
* Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane2004-08-023-11/+23
* Cause ALTER OWNER commands to update the object's ACL, replacing referencesTom Lane2004-08-015-37/+180
* Add docs for initdb --auth.Bruce Momjian2004-08-011-9/+2
* Restructure error handling as recently discussed. It is now reallyTom Lane2004-07-313-121/+194
* Fix subtransaction behavior for large objects, temp namespace, files,Tom Lane2004-07-281-22/+71
* Invent WAL timelines, as per recent discussion, to make point-in-timeTom Lane2004-07-214-17/+17
* Fix unused variable when Assert() not used.Bruce Momjian2004-07-201-1/+3
* XLOG file archiving and point-in-time recovery. There are still someTom Lane2004-07-191-9/+2
* When renaming a column that participates in a foreign key, we mustTom Lane2004-07-171-1/+15
* Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane2004-07-171-16/+26
* Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane2004-07-121-2/+2
* ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane2004-07-112-22/+309
* Move TablespaceCreateDbspace() call into smgrcreate(), which is where itTom Lane2004-07-111-4/+12
* Andreas Pflug wrote:Joe Conway2004-07-021-2/+2
* Nested transactions. There is still much left to do, especially on theTom Lane2004-07-015-178/+559
* Support renaming of tablespaces, and changing the owners ofTom Lane2004-06-2511-81/+643
* Rename the built-in tablespaces to pg_default and pg_global, and prohibitTom Lane2004-06-211-3/+14
* Rename pg_tablespaces directory to pg_tblspc, so it is more unique fromBruce Momjian2004-06-211-5/+5
* Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane2004-06-1810-279/+952
* Represent type-specific length coercion functions as pg_cast entries,Tom Lane2004-06-162-10/+25
* When using extended-query protocol, postpone planning of unnamed statementsTom Lane2004-06-113-6/+6
* Attached is a patch that takes care of the PATHSEP issue. I made a moreBruce Momjian2004-06-101-2/+2
* Make ALTER TABLE ADD SERIAL work reasonably in inheritance cases, too.Tom Lane2004-06-101-1/+3
* Fix oversight in recent ALTER TABLE improvements. We now supportTom Lane2004-06-101-15/+26
* Clean up generation of default names for constraints, indexes, and serialTom Lane2004-06-103-81/+165
* vacuum.c refactoringBruce Momjian2004-06-081-436/+589
* Allow use of table rowtypes directly as column types of other tables.Tom Lane2004-06-061-1/+96
* Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane2004-06-061-23/+23
* Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane2004-06-055-32/+24
* Resurrect heap_deformtuple(), this time implemented as a singly nestedTom Lane2004-06-042-23/+10
* OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian2004-06-021-2/+20
* Minor code rationalization: FlushRelationBuffers just returns void,Tom Lane2004-05-313-22/+9
* This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian2004-05-261-1/+47
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-2626-374/+351
* Avoid calling select_default_timezone() when backing out an unwanted TZTom Lane2004-05-231-5/+32
* New two-stage sampling method for ANALYZE, as per discussions a few weeksTom Lane2004-05-231-163/+226
* Handle impending sinval queue overflow by means of a separate signalTom Lane2004-05-231-11/+23
* For multi-table ANALYZE, use per-table transactions when possibleTom Lane2004-05-221-64/+90
* Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLockTom Lane2004-05-221-12/+13
* Put back #include <sys/time.h> in files that seem to need it on Linux.Tom Lane2004-05-211-1/+2
* Integrate src/timezone library for all platforms. There is more we canTom Lane2004-05-211-221/+36
* Tighten parsing of boolean options to CREATE TYPE and related functions,Tom Lane2004-05-144-9/+29
* Fix a couple of oversights in new ALTER TABLE code that brokeTom Lane2004-05-081-5/+8