summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* Clarify some error messages about duplicate things.Peter Eisentraut2007-06-031-5/+5
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-031-10/+10
* Have CLUSTER advance the table's relfrozenxid. The new frozen point is theAlvaro Herrera2007-05-181-3/+8
* Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, toAlvaro Herrera2007-05-161-3/+3
* Get rid of the pg_shdepend entry for a TOAST table; it's unnecessary sinceTom Lane2007-05-141-3/+4
* Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane2007-05-121-5/+7
* Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane2007-05-111-15/+27
* Support arrays of composite types, including the rowtypes of regular tablesTom Lane2007-05-111-6/+27
* Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane2007-04-081-29/+2
* Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck2007-03-191-12/+66
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-2/+8
* Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian2007-03-061-5/+1
* Fix new RI operator selection code to do the right thing when working withTom Lane2007-02-161-19/+40
* Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane2007-02-141-433/+130
* Repair failure to check that a table is still compatible with a previouslyTom Lane2007-02-021-7/+50
* Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian2007-01-251-1/+5
* Properly detoast access to bytea field pg_trigger.tgargs. Old codeBruce Momjian2007-01-251-3/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Clean up smgr.c/md.c APIs as per discussion a couple months ago. Instead ofTom Lane2007-01-031-2/+2
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-301-12/+32
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-231-2/+2
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-131-165/+182
* Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane2006-10-111-83/+114
* Message style improvementsPeter Eisentraut2006-10-061-4/+4
* pgindent run for 8.2.Bruce Momjian2006-10-041-82/+88
* Disallow TRUNCATE when there are any pending after-trigger events forTom Lane2006-09-041-1/+8
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-251-2/+3
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-211-50/+50
* Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations duringTom Lane2006-08-031-2/+2
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-311-2/+5
* Change the bootstrap sequence so that toast tables for system catalogs areTom Lane2006-07-311-285/+5
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-2/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+3
* Alphabetically order reference to include files, "S"-"Z".Bruce Momjian2006-07-111-2/+2
* Fix ALTER TABLE to check pre-existing NOT NULL constraints when rewritingTom Lane2006-07-101-31/+38
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-54/+67
* Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway2006-07-021-133/+127
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-28/+136
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-9/+509
* Revert patch, doesn't do what it should:Bruce Momjian2006-06-271-6/+1
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-271-10/+49
* Disallow changing/dropping default expression of a SERIAL columnBruce Momjian2006-06-271-1/+6
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-161-1/+4
* Clean up code associated with updating pg_class statistics columnsTom Lane2006-05-101-9/+2
* Revert patch pending more discussion:Bruce Momjian2006-04-301-6/+1
* Disallow changing DEFAULT expression of a SERIAL column.Bruce Momjian2006-04-291-1/+6
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-20/+13
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Dept. of second thoughts: rejigger the TRUNCATE ... CASCADE patch so thatTom Lane2006-03-031-68/+63
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-031-16/+74