aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAge
* Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane2010-08-18
* Include the backend ID in the relpath of temporary relations.Robert Haas2010-08-13
* Standardize get_whatever_oid functions for object types withRobert Haas2010-08-05
* Fix inheritance count tracking in ALTER TABLE .. ADD CONSTRAINT.Robert Haas2010-08-03
* Fix another longstanding problem in copy_relation_data: it was blithelyTom Lane2010-07-29
* Add explicit regression tests for ALTER TABLE lock levels.Simon Riggs2010-07-29
* Reduce lock levels of CREATE TRIGGER and some ALTER TABLE, CREATE RULE actions.Simon Riggs2010-07-28
* CREATE TABLE IF NOT EXISTS.Robert Haas2010-07-25
* Add more checks against altering typed tablesPeter Eisentraut2010-07-23
* pgindent run for 9.0, second runBruce Momjian2010-07-06
* Allow ALTER TABLE .. SET TABLESPACE to be interrupted.Robert Haas2010-07-01
* Introduce wal_level GUC to explicitly control if information needed forHeikki Linnakangas2010-04-28
* Forbid renaming columns of objects whose column names are system-generated.Robert Haas2010-03-20
* Fix incorrect comment about permissions checking being done in utility.c.Robert Haas2010-03-10
* pgindent run for 9.0Bruce Momjian2010-02-26
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-14
* Create a "relation mapping" infrastructure to support changing the relfilenodesTom Lane2010-02-07
* Restructure CLUSTER/newstyle VACUUM FULL/ALTER TABLE support so that swappingTom Lane2010-02-04
* Move the responsibility of writing a "unlogged WAL operation" record fromHeikki Linnakangas2010-02-03
* Assorted cleanups in preparation for using a map file to support alteringTom Lane2010-02-03
* Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME.Robert Haas2010-02-01
* Type table featurePeter Eisentraut2010-01-28
* Change a few remaining calls of XLogArchivingActive() to useHeikki Linnakangas2010-01-28
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-22
* Write a WAL record whenever we perform an operation without WAL-loggingHeikki Linnakangas2010-01-20
* Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane2010-01-17
* Introduce Streaming Replication.Heikki Linnakangas2010-01-15
* Preserve relfilenodes:Bruce Momjian2010-01-06
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Add an index on pg_inherits.inhparent, and use it to avoid seqscans inTom Lane2009-12-29
* Remove code that attempted to rename index columns to keep them in sync withTom Lane2009-12-23
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-15
* Add large object access control.Itagaki Takahiro2009-12-11
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-09
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-07
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-20
* Allow rewriting ALTER TABLE to skip WAL logging.Heikki Linnakangas2009-11-04
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-14
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-13
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-12
* Change CREATE TABLE so that column default expressions coming from differentTom Lane2009-10-06
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-05
* Extend the BKI infrastructure to allow system catalogs to be givenTom Lane2009-09-26
* Make TRUNCATE do truncate-in-place when processing a relation that was createdTom Lane2009-08-23
* Improve error message for the case where a requested foreign key constraintTom Lane2009-08-12
* Fix some omissions in the dependency-object-class support for SQL/MED objects.Tom Lane2009-08-07
* Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane2009-08-02
* Merge the Constraint and FkConstraint node types into a single type.Tom Lane2009-07-30
* Support deferrable uniqueness constraints.Tom Lane2009-07-29
* Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid.Tom Lane2009-07-28