aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAge
* Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane2002-11-02
* Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane2002-10-21
* Fix ALTER TABLE ... ADD COLUMN for inheritance cases.Bruce Momjian2002-10-21
* Back out Alvaro's patch until regression tests pass.Bruce Momjian2002-10-19
* Fix compile failure caused by new patch.Bruce Momjian2002-10-19
* > Huh, I don't know where I got the idea you were (or someone else was?)Bruce Momjian2002-10-19
* Make the world at least somewhat safe for zero-column tables, andTom Lane2002-09-28
* Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to otherTom Lane2002-09-23
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-22
* Move most of the error checking for foreign-key constraints out ofTom Lane2002-09-22
* Fix likely cause of rare ALTER TABLE ADD FOREIGN KEY failures ---Tom Lane2002-09-12
* Remove heap_mark4update from AlterTableCreateToastTable. This hasTom Lane2002-09-06
* pgindent run.Bruce Momjian2002-09-04
* Code review for HeapTupleHeader changes. Add version number to page headersTom Lane2002-09-02
* Add attisinherited column to pg_attribute; use it to guard againstTom Lane2002-08-30
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-29
* The following small patch provides a couple of minor updates (againstBruce Momjian2002-08-28
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-27
* The cstring datatype can now be copied, passed around, etc. The typlenTom Lane2002-08-24
* Code review for recent TRUNCATE changes. Tighten relation-kind check,Tom Lane2002-08-22
* # Disallow TRUNCATE on tables that are involved in referentialBruce Momjian2002-08-22
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-19
* Tom Lane wrote:Bruce Momjian2002-08-15
* Fix permission checking for temp-table namespace.Tom Lane2002-08-07
* Restructure system-catalog index updating logic. Instead of havingTom Lane2002-08-05
* ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane2002-08-02
* Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 inTom Lane2002-07-31
* oid is needed, it is added at the end of the struct (after the nullBruce Momjian2002-07-20
* Add more dependency insertions --- this completes the basic pg_dependTom Lane2002-07-16
* Add code to extract dependencies from an expression tree, and use itTom Lane2002-07-16
* Use the dependency mechanism to manage column defaults. We need thisTom Lane2002-07-15
* Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane2002-07-12
* I've fixed up the way domain constraints (not null and type length)Bruce Momjian2002-07-06
* First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane2002-07-01
* Repair AlterTableOwner --- was failing for relations with indexes.Tom Lane2002-06-17
* Remove global variable scanCommandId in favor of storing a command IDTom Lane2002-05-21
* Restructure indexscan API (index_beginscan, index_getnext) perTom Lane2002-05-20
* Get rid of the last few uses of typeidTypeName() rather thanTom Lane2002-05-17
* Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane2002-05-12
* Support toasting of shared system relations, and provide toast tables forTom Lane2002-04-27
* Restructure aclcheck error reporting to make permission-failureTom Lane2002-04-27
* Move renametrig() from tablecmds.c to trigger.c --- if we're going toTom Lane2002-04-26
* Attached is a patch for ALTER TRIGGER RENAME per the above thread. IBruce Momjian2002-04-24
* Doc fix for INSERT ... (DEFAULT, ...)Bruce Momjian2002-04-24
* Oops, forgot we had a macro to encapsulate test for type toastability.Tom Lane2002-04-22
* Fix incorrect Assert; install a more trustworthy check on whetherTom Lane2002-04-22
* Change naming rule for ON SELECT rules of views: they're all justTom Lane2002-04-19
* pg_trigger's index on tgrelid is replaced by a unique index onTom Lane2002-04-19
* Rule names are now unique per-relation, rather than unique globally.Tom Lane2002-04-18
* CATALOG VERSION UPDATED:Bruce Momjian2002-04-15