aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAge
* Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane2008-02-07
* Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane2008-01-30
* Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane2008-01-17
* Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane2008-01-02
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-11
* Remove hack in pg_tablespace_aclmask() that disallowed permissionsTom Lane2007-10-12
* Improve consistency of the error messages generated when you try to useTom Lane2007-09-29
* Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane2007-09-06
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-21
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway2007-07-03
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-23
* Clarify some error messages about duplicate things.Peter Eisentraut2007-06-03
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-03
* Have CLUSTER advance the table's relfrozenxid. The new frozen point is theAlvaro Herrera2007-05-18
* Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, toAlvaro Herrera2007-05-16
* Get rid of the pg_shdepend entry for a TOAST table; it's unnecessary sinceTom Lane2007-05-14
* Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane2007-05-12
* Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane2007-05-11
* Support arrays of composite types, including the rowtypes of regular tablesTom Lane2007-05-11
* Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane2007-04-08
* Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck2007-03-19
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian2007-03-06
* Fix new RI operator selection code to do the right thing when working withTom Lane2007-02-16
* Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane2007-02-14
* Repair failure to check that a table is still compatible with a previouslyTom Lane2007-02-02
* Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian2007-01-25
* Properly detoast access to bytea field pg_trigger.tgargs. Old codeBruce Momjian2007-01-25
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Clean up smgr.c/md.c APIs as per discussion a couple months ago. Instead ofTom Lane2007-01-03
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-30
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-23
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-13
* Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane2006-10-11
* Message style improvementsPeter Eisentraut2006-10-06
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Disallow TRUNCATE when there are any pending after-trigger events forTom Lane2006-09-04
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-25
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-21
* Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations duringTom Lane2006-08-03
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-31
* Change the bootstrap sequence so that toast tables for system catalogs areTom Lane2006-07-31
* 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
* Alphabetically order reference to include files, "S"-"Z".Bruce Momjian2006-07-11
* Fix ALTER TABLE to check pre-existing NOT NULL constraints when rewritingTom Lane2006-07-10