summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* Invent WAL timelines, as per recent discussion, to make point-in-timeTom Lane2004-07-211-2/+2
* 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
* ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane2004-07-111-6/+282
* Nested transactions. There is still much left to do, especially on theTom Lane2004-07-011-13/+58
* Support renaming of tablespaces, and changing the owners ofTom Lane2004-06-251-35/+43
* Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane2004-06-181-8/+40
* 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-101-43/+31
* Allow use of table rowtypes directly as column types of other tables.Tom Lane2004-06-061-1/+96
* Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane2004-06-051-3/+3
* Resurrect heap_deformtuple(), this time implemented as a singly nestedTom Lane2004-06-041-17/+8
* OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian2004-06-021-2/+20
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-261-119/+105
* Fix a couple of oversights in new ALTER TABLE code that brokeTom Lane2004-05-081-5/+8
* Get rid of cluster.c's apparatus for rebuilding a relation's indexesTom Lane2004-05-081-82/+60
* Solve the 'Turkish problem' with undesirable locale behavior for caseTom Lane2004-05-071-5/+5
* Make ALTER COLUMN TYPE preserve clustered status for indexes it doesn'tTom Lane2004-05-061-3/+11
* ALTER TABLE rewrite. New cool stuff:Tom Lane2004-05-051-998/+2073
* Replace TupleTableSlot convention for whole-row variables and functionTom Lane2004-04-011-5/+4
* Upgrade ALTER TABLE DROP COLUMN so that it can drop an OID column, andTom Lane2004-03-231-120/+66
* Generate a WARNING when the column types in a foreign key constraint areTom Lane2004-03-131-22/+72
* First steps towards statistics on expressional (nee functional) indexes.Tom Lane2004-02-151-7/+13
* Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane2004-02-101-2/+2
* Review uses of IsUnderPostmaster, change some tests to look atTom Lane2004-01-281-3/+4
* Fix a minor bug introduced by the recent CREATE TABLE AS / WITH OIDSNeil Conway2004-01-231-18/+3
* Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway2004-01-101-2/+21
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane2003-11-121-9/+9
* Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane2003-11-091-7/+7
* Back out makeNode() patch to fix gcc 3.3.1 warning.Bruce Momjian2003-10-131-10/+9
* Adjust setRelhassubclassInRelation() to not perform actual heap_updateTom Lane2003-10-131-86/+34
* Use makeNode() to allocate structures that have to be cast to Node *,Bruce Momjian2003-10-121-9/+10
* Back out -fstrict-aliasing void* casting.Bruce Momjian2003-10-111-2/+2
* This patch will stop gcc from issuing warnings about type-punned objectsBruce Momjian2003-10-111-2/+2
* During ALTER TABLE ADD FOREIGN KEY, try to check the existing rows usingTom Lane2003-10-061-1/+8
* String fixes/improvements found by Alvaro HerreraPeter Eisentraut2003-10-021-2/+2
* More message editing, some suggested by Alvaro HerreraPeter Eisentraut2003-09-291-4/+4
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-42/+42
* Disallow foreign-key references from temp tables to permanent tables.Tom Lane2003-09-191-42/+25
* Remove warnings for operations that have no effect when executed repeatedly.Peter Eisentraut2003-09-151-12/+1
* Guard against pgindent changing =- to = -.Bruce Momjian2003-08-301-5/+5
* Another pgindent run with updated typedefs.Bruce Momjian2003-08-081-2/+2
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-140/+145
* Adjust 'permission denied' messages to be more useful and consistent.Tom Lane2003-08-011-30/+44
* Another round of error message editing, covering backend/commands/.Tom Lane2003-07-201-327/+488
* Implement outer-level aggregates to conform to the SQL spec, withTom Lane2003-06-061-3/+3
* Replace functional-index facility with expressional indexes. Any columnTom Lane2003-05-281-60/+64