summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane2006-01-301-9/+37
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-41/+41
* Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera2005-11-211-3/+2
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-488/+466
* Preserve tuple OIDs during ATRewriteTable. Per gripe from Duncan Crombie.Tom Lane2005-10-031-1/+9
* Change nextval and other sequence functions to specify their sequenceTom Lane2005-10-021-62/+1
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-09-241-3/+4
* Arrange for indexes and toast tables to inherit their ownership fromTom Lane2005-08-261-1/+3
* Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane2005-08-231-1/+44
* Cause ALTER INDEX OWNER to generate a warning and do nothing, rather thanTom Lane2005-08-221-1/+20
* Fix unwanted denial of ALTER OWNER rights to superusers. There was someTom Lane2005-08-221-18/+22
* ALTER TABLE OWNER must change the ownership of the table's rowtype too.Tom Lane2005-08-041-26/+48
* Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane2005-08-011-1/+295
* Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane2005-07-141-6/+17
* Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane2005-07-071-1/+4
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-281-14/+14
* Modify XLogInsert API to make callers specify whether pages to be backedTom Lane2005-06-061-3/+3
* Replace the parser's namespace tree (which formerly had the sameTom Lane2005-06-051-2/+2
* When enqueueing after-row triggers for updates of a table with a foreignNeil Conway2005-05-301-42/+2
* Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway2005-05-301-38/+60
* Report index name on CLUSTER failure. Also, suggest ALTER TABLEBruce Momjian2005-05-101-2/+2
* For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane2005-05-061-1/+2
* Completion of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-33/+31
* First phase of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-22/+26
* Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane2005-04-131-3/+3
* Convert oidvector and int2vector into variable-length arrays. ThisTom Lane2005-03-291-11/+31
* Fix two bugs in change_owner_recurse_to_sequences: it was grabbing anTom Lane2005-03-251-2/+4
* Revert changes to CREATE TRIGGER and ALTER TABLE ADD FOREIGN KEY locking,Neil Conway2005-03-241-7/+7
* Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquireNeil Conway2005-03-231-7/+7
* Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane2005-03-201-6/+5
* Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane2005-03-161-18/+11
* ALTER TABLE ADD COLUMN exhibits a significant memory leak when adding aNeil Conway2005-02-091-16/+32
* Change heap_modifytuple() to require a TupleDesc rather than aNeil Conway2005-01-271-3/+3
* Generalize TRUNCATE to support truncating multiple tables in oneTom Lane2005-01-271-65/+95
* Fix ALTER TABLE ADD COLUMN so that constraints of domain types areTom Lane2005-01-241-3/+32
* Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane2005-01-101-4/+2