summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* Another round of error message editing, covering backend/commands/.Tom Lane2003-07-201-327/+488
* Implement outer-level aggregates to conform to the SQL spec, withTom Lane2003-06-061-3/+3
* Replace functional-index facility with expressional indexes. Any columnTom Lane2003-05-281-60/+64
* Infrastructure for deducing Param types from context, in the same wayTom Lane2003-04-291-2/+2
* Prevent palloc(0) error when parent table has zero columns.Tom Lane2003-04-211-3/+4
* Fix ALTER TABLE / CLUSTER ON breakage.Bruce Momjian2003-03-211-1/+2
* Add ALTER TABLE <tablename> CLUSTER ON <indexname>Bruce Momjian2003-03-201-1/+85
* Add start time to pg_stat_activityBruce Momjian2003-03-201-3/+3
* Code for WITHOUT OIDS.Bruce Momjian2003-02-131-2/+117
* Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane2003-02-091-31/+29
* Reconsider old decision to try to constant-fold default and constraintTom Lane2003-01-081-2/+5
* Code review for transaction-safe-TRUNCATE patch: minor cleanups.Tom Lane2002-12-301-3/+7
* Code review for CLUSTER ALL patch. Fix bogus locking, incorrect transactionTom Lane2002-12-301-11/+6
* Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane2002-12-161-6/+4
* Revise executor APIs so that all per-query state structure is built inTom Lane2002-12-151-12/+13
* Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane2002-12-131-2/+7
* Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane2002-12-121-2/+2
* Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane2002-12-121-4/+4
* Fix compile warnings from truncate patch.Tom Lane2002-11-231-2/+2
* Transaction safe TruncateBruce Momjian2002-11-231-15/+14
* This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian2002-11-231-14/+1
* Add DOMAIN check constraints.Bruce Momjian2002-11-151-6/+10
* Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane2002-11-111-185/+147
* Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian2002-11-091-2/+216
* Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane2002-11-021-15/+32
* Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane2002-10-211-1/+11
* Fix ALTER TABLE ... ADD COLUMN for inheritance cases.Bruce Momjian2002-10-211-12/+38
* Back out Alvaro's patch until regression tests pass.Bruce Momjian2002-10-191-38/+7
* Fix compile failure caused by new patch.Bruce Momjian2002-10-191-2/+2
* > Huh, I don't know where I got the idea you were (or someone else was?)Bruce Momjian2002-10-191-7/+38
* Make the world at least somewhat safe for zero-column tables, andTom Lane2002-09-281-26/+3
* Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to otherTom Lane2002-09-231-1/+9
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-221-17/+66
* Move most of the error checking for foreign-key constraints out ofTom Lane2002-09-221-251/+516
* Fix likely cause of rare ALTER TABLE ADD FOREIGN KEY failures ---Tom Lane2002-09-121-2/+2
* Remove heap_mark4update from AlterTableCreateToastTable. This hasTom Lane2002-09-061-37/+15
* pgindent run.Bruce Momjian2002-09-041-125/+130
* Code review for HeapTupleHeader changes. Add version number to page headersTom Lane2002-09-021-7/+5
* Add attisinherited column to pg_attribute; use it to guard againstTom Lane2002-08-301-68/+125
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-291-7/+6
* The following small patch provides a couple of minor updates (againstBruce Momjian2002-08-281-7/+8
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-271-3/+3
* The cstring datatype can now be copied, passed around, etc. The typlenTom Lane2002-08-241-3/+3
* Code review for recent TRUNCATE changes. Tighten relation-kind check,Tom Lane2002-08-221-14/+26
* # Disallow TRUNCATE on tables that are involved in referentialBruce Momjian2002-08-221-1/+35
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-191-30/+17
* Tom Lane wrote:Bruce Momjian2002-08-151-2/+7
* Fix permission checking for temp-table namespace.Tom Lane2002-08-071-3/+3
* Restructure system-catalog index updating logic. Instead of havingTom Lane2002-08-051-98/+28
* ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane2002-08-021-54/+148