summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Prevent a backend crash when processing CREATE TABLE commands withNeil Conway2004-11-161-1/+28
* Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane2004-11-051-53/+16
* I found a corner case in which it is possible for RI_FKey_check's callTom Lane2004-10-301-1/+3
* In ALTER COLUMN TYPE, strip any implicit coercion operations appearingTom Lane2004-10-221-2/+9
* Disallow referential integrity actions from being deferred; only theTom Lane2004-10-211-5/+17
* Give a more user-friendly error message in case where a table is createdTom Lane2004-10-161-1/+41
* Message style revisionsPeter Eisentraut2004-10-121-2/+2
* Fix ALTER TABLE OWNER to adjust the ownership of dependent sequences,Tom Lane2004-09-231-5/+79
* Restructure subtransaction handling to reduce resource consumption,Tom Lane2004-09-161-26/+25
* needs_toast_table() should ignore dropped columns.Tom Lane2004-08-311-1/+3
* copy_relation_data was mistakenly assuming that the source relationTom Lane2004-08-311-2/+5
* Pgindent run for 8.0.Bruce Momjian2004-08-291-457/+471
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Rearrange order of operations in heap_drop_with_catalog and index_dropTom Lane2004-08-281-2/+2
* Dept. of further reflection: I looked around to see if any other callersTom Lane2004-08-151-8/+19
* Change order of operations in ALTER TABLE SET TABLESPACE so that weTom Lane2004-08-131-8/+7
* Fix silly thinko in ALTER COLUMN TYPE. Check for finding expectedTom Lane2004-08-041-3/+3