summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
AgeCommit message (Expand)Author
2002-12-30Code review for transaction-safe-TRUNCATE patch: minor cleanups.Tom Lane
2002-12-30Code review for CLUSTER ALL patch. Fix bogus locking, incorrect transactionTom Lane
2002-12-16Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-11-23Fix compile warnings from truncate patch.Tom Lane
2002-11-23Transaction safe TruncateBruce Momjian
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-11-02Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane
2002-10-21Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane
2002-10-21Fix ALTER TABLE ... ADD COLUMN for inheritance cases.Bruce Momjian
2002-10-19Back out Alvaro's patch until regression tests pass.Bruce Momjian
2002-10-19Fix compile failure caused by new patch.Bruce Momjian
2002-10-19> Huh, I don't know where I got the idea you were (or someone else was?)Bruce Momjian
2002-09-28Make the world at least somewhat safe for zero-column tables, andTom Lane
2002-09-23Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to otherTom Lane
2002-09-22Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane
2002-09-22Move most of the error checking for foreign-key constraints out ofTom Lane
2002-09-12Fix likely cause of rare ALTER TABLE ADD FOREIGN KEY failures ---Tom Lane
2002-09-06Remove heap_mark4update from AlterTableCreateToastTable. This hasTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-30Add attisinherited column to pg_attribute; use it to guard againstTom Lane
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-28The following small patch provides a couple of minor updates (againstBruce Momjian
2002-08-27This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian
2002-08-24The cstring datatype can now be copied, passed around, etc. The typlenTom Lane
2002-08-22Code review for recent TRUNCATE changes. Tighten relation-kind check,Tom Lane
2002-08-22# Disallow TRUNCATE on tables that are involved in referentialBruce Momjian
2002-08-19Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane
2002-08-15Tom Lane wrote:Bruce Momjian
2002-08-07Fix permission checking for temp-table namespace.Tom Lane
2002-08-05Restructure system-catalog index updating logic. Instead of havingTom Lane
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-31Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 inTom Lane
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-16Add more dependency insertions --- this completes the basic pg_dependTom Lane
2002-07-16Add code to extract dependencies from an expression tree, and use itTom Lane
2002-07-15Use the dependency mechanism to manage column defaults. We need thisTom Lane
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-07-06I've fixed up the way domain constraints (not null and type length)Bruce Momjian
2002-07-01First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane
2002-06-17Repair AlterTableOwner --- was failing for relations with indexes.Tom Lane
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane